123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /*
- * Copyright 2014-2022 The GmSSL Project. All Rights Reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the License); you may
- * not use this file except in compliance with the License.
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- */
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- #include <gmssl/base64.h>
- #include <gmssl/error.h>
- static int test_base64(void)
- {
- uint8_t bin1[50];
- uint8_t bin2[100];
- uint8_t bin3[200];
- uint8_t buf1[8000] = {0};
- uint8_t buf2[8000] = {0};
- BASE64_CTX ctx;
- uint8_t *p;
- int len;
- memset(bin1, 0x01, sizeof(bin1));
- memset(bin2, 0xA5, sizeof(bin2));
- memset(bin3, 0xff, sizeof(bin3));
- p = buf1;
- base64_encode_init(&ctx);
- base64_encode_update(&ctx, bin1, sizeof(bin1), p, &len); p += len;
- base64_encode_update(&ctx, bin2, sizeof(bin2), p, &len); p += len;
- base64_encode_update(&ctx, bin3, sizeof(bin3), p, &len); p += len;
- base64_encode_finish(&ctx, p, &len); p += len;
- len = (int)(p - buf1);
- p = buf2;
- base64_decode_init(&ctx);
- base64_decode_update(&ctx, buf1, len, p, &len); p += len;
- base64_decode_finish(&ctx, p, &len); p += len;
- len = (int)(p - buf2);
- printf("base64 test ");
- if (len != sizeof(bin1) + sizeof(bin2) + sizeof(bin3)
- || memcmp(buf2, bin1, sizeof(bin1)) != 0
- || memcmp(buf2 + sizeof(bin1), bin2, sizeof(bin2)) != 0
- || memcmp(buf2 + sizeof(bin1) + sizeof(bin2), bin3, sizeof(bin3)) != 0) {
- printf("failed\n");
- return -1;
- } else {
- printf("ok\n");
- }
- return 1;
- }
- int main(void)
- {
- if (test_base64() != 1) goto err;
- printf("%s all tests passed\n", __FILE__);
- return 0;
- err:
- error_print();
- return -1;
- }
|