mirror of https://github.com/PurpleI2P/i2pd.git
Chad Fraleigh
1 year ago
2 changed files with 22 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||||||
|
|
||||||
|
|
||||||
|
#include <stdint.h> |
||||||
|
#include <stddef.h> |
||||||
|
#include <string> |
||||||
|
|
||||||
|
#include <Base.h> |
||||||
|
|
||||||
|
#include "fuzzing.h" |
||||||
|
|
||||||
|
|
||||||
|
bool |
||||||
|
fuzzing_testinput(const uint8_t * data, size_t size) |
||||||
|
{ |
||||||
|
std::string str((const char *) data, size); |
||||||
|
|
||||||
|
|
||||||
|
i2p::data::ToBase64Standard(str); |
||||||
|
|
||||||
|
return true; |
||||||
|
} |
Loading…
Reference in new issue