Add other files that are new since 0.6.0

This commit is contained in:
Isaac Connor
2023-06-10 08:34:36 -04:00
parent d29ef0e26b
commit 3934bdda9d
69 changed files with 5501 additions and 0 deletions

View 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.
}
}