Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-b64.c « tests - git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c29b4e2c73a36a1cc02bc10ccf9c47347e098abc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <stdio.h>
#include <string.h>

#include "utils.h"

static void test_b64_encode(const char *src)
{
	char dst[255] = {0};
	int r = b64_encode(src, strlen(src), dst, sizeof(dst));
	fprintf(stdout, "%d %s\n", r, dst);
}

static void test_b64_decode(const char *src)
{
	char dst[255] = {0};
	int r = b64_decode(src, dst, sizeof(dst));
	fprintf(stdout, "%d %s\n", r, dst);
}

int main()
{
	test_b64_encode("");
	test_b64_encode("f");
	test_b64_encode("fo");
	test_b64_encode("foo");
	test_b64_encode("foob");
	test_b64_encode("fooba");
	test_b64_encode("foobar");

	test_b64_decode("");
	test_b64_decode("Zg==");
	test_b64_decode("Zm8=");
	test_b64_decode("Zm9v");
	test_b64_decode("Zm9vYg==");
	test_b64_decode("Zm9vYmE=");
	test_b64_decode("Zm9vYmFy");

	return 0;
}