You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
512 B
27 lines
512 B
4 years ago
|
#include <assert.h>
|
||
|
#include <stdint.h>
|
||
|
#include <string.h>
|
||
|
#include <tests/fuzz/libfuzz.h>
|
||
|
|
||
|
#include <common/base32.h>
|
||
|
#include <common/base64.h>
|
||
|
|
||
|
void init(int *argc, char ***argv)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void run(const uint8_t *data, size_t size)
|
||
|
{
|
||
|
char *encoded;
|
||
|
uint8_t *decoded;
|
||
|
|
||
|
encoded = b32_encode(NULL, data, size);
|
||
|
decoded = b32_decode(NULL, encoded, strlen(encoded));
|
||
|
assert(memcmp(decoded, data, size) == 0);
|
||
|
tal_free(encoded);
|
||
|
tal_free(decoded);
|
||
|
|
||
|
encoded = b64_encode(NULL, data, size);
|
||
|
tal_free(encoded);
|
||
|
}
|