mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-12-05 21:27:13 -06:00
init
This commit is contained in:
45
test_base32.c
Normal file
45
test_base32.c
Normal file
@@ -0,0 +1,45 @@
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include "types.h"
|
||||
#include "base32.h"
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include <sodium/randombytes.h>
|
||||
|
||||
struct texttestcase {
|
||||
const char *in;
|
||||
const char *out;
|
||||
const char *rev;
|
||||
} tests0[] = {
|
||||
{"", "", ""},
|
||||
{"f", "my", "f"},
|
||||
{"fo", "mzxq", "fo"},
|
||||
{"foo", "mzxw6", "foo"},
|
||||
{"foob", "mzxw6yq", "foob"},
|
||||
{"fooba", "mzxw6ytb", "fooba"},
|
||||
{"foobar", "mzxw6ytboi", "foobar"},
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
char buf[1024], buf2[1024], mask;
|
||||
size_t r;
|
||||
for (size_t i = 0; i < sizeof(tests0)/sizeof(tests0[0]); ++i) {
|
||||
base32_to(buf, (const u8 *)tests0[i].in, strlen(tests0[i].in));
|
||||
assert(strcmp(buf, tests0[i].out) == 0);
|
||||
r = base32_from((u8 *)buf2, (u8 *)&mask, buf);
|
||||
buf2[r] = 0;
|
||||
//fprintf(stderr, "r:%d, mask:%02X\n", (int)r, ((unsigned int)mask) & 0xFF);
|
||||
//assert(r == strlen(buf2));
|
||||
//assert(r == strlen(tests0[i].rev));
|
||||
//fprintf(stderr, "%s -- %s\n", buf2, tests0[i].rev);
|
||||
assert(strcmp(buf2, tests0[i].rev) == 0);
|
||||
}
|
||||
|
||||
//randombytes_buf(buf, 128);
|
||||
//base32_to(buf2, (const u8 *)buf, 128);
|
||||
//fprintf(stderr, ">%s\n", buf2);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user