mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-01-17 18:48:24 -05:00
10 lines
249 B
C++
10 lines
249 B
C++
#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.
|
|
}
|
|
}
|