mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-05-10 07:34:22 -04:00
Add other files that are new since 0.6.0
This commit is contained in:
9
dep/jwt-cpp/tests/fuzz/BaseEncodeFuzz.cpp
Normal file
9
dep/jwt-cpp/tests/fuzz/BaseEncodeFuzz.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <jwt-cpp/base.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
|
||||
jwt::base::encode<jwt::alphabet::base64>(std::string{(char*)Data, Size});
|
||||
return 0; // Non-zero return values are reserved for future use.
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user