ASN.1: adapt our use of INTxx et al by making them explicitely embedded
[openssl.git] / test / md2test.c
1 /*
2  * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <string.h>
11
12 #include "../e_os.h"
13 #include "test_main.h"
14 #include "testutil.h"
15
16 #ifndef OPENSSL_NO_MD2
17 # include <openssl/evp.h>
18 # include <openssl/md2.h>
19
20 # ifdef CHARSET_EBCDIC
21 #  include <openssl/ebcdic.h>
22 # endif
23
24 static char *test[] = {
25     "",
26     "a",
27     "abc",
28     "message digest",
29     "abcdefghijklmnopqrstuvwxyz",
30     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
31     "12345678901234567890123456789012345678901234567890123456789012345678901234567890",
32 };
33
34 static char *ret[] = {
35     "8350e5a3e24c153df2275c9f80692773",
36     "32ec01ec4a6dac72c0ab96fb34c0b5d1",
37     "da853b0d3f88d99b30283a69e6ded6bb",
38     "ab4f496bfb2a530b219ff33031fe06b0",
39     "4e8ddff3650292ab5a4108c3aa47940b",
40     "da33def2a42df13975352846c30338cd",
41     "d5976f79d83d3a0dc9806c3c66f3efd8",
42 };
43
44 static int test_md2(int n)
45 {
46     char buf[80];
47     unsigned char md[MD2_DIGEST_LENGTH];
48     int i;
49
50     if (!TEST_true(EVP_Digest((unsigned char *)test[n], strlen(test[n]),
51                                  md, NULL, EVP_md2(), NULL)))
52         return 0;
53
54     for (i = 0; i < MD2_DIGEST_LENGTH; i++)
55         sprintf(&(buf[i * 2]), "%02x", md[i]);
56     if (!TEST_str_eq(buf, ret[n]))
57         return 0;
58     return 1;
59 }
60 #endif
61
62 void register_tests(void)
63 {
64 #ifndef OPENSSL_NO_MD2
65     ADD_ALL_TESTS(test_md2, OSSL_NELEM(test));
66 #endif
67 }