Add some session API tests
[openssl.git] / test / md4test.c
1 /*
2  * Copyright 1995-2016 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 <stdio.h>
11 #include <string.h>
12 #include <stdlib.h>
13
14 #include "../e_os.h"
15
16 #ifdef OPENSSL_NO_MD4
17 int main(int argc, char *argv[])
18 {
19     printf("No MD4 support\n");
20     return (0);
21 }
22 #else
23 # include <openssl/evp.h>
24 # include <openssl/md4.h>
25
26 static char *test[] = {
27     "",
28     "a",
29     "abc",
30     "message digest",
31     "abcdefghijklmnopqrstuvwxyz",
32     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
33     "12345678901234567890123456789012345678901234567890123456789012345678901234567890",
34     NULL,
35 };
36
37 static char *ret[] = {
38     "31d6cfe0d16ae931b73c59d7e0c089c0",
39     "bde52cb31de33e46245e05fbdbd6fb24",
40     "a448017aaf21d8525fc10ae87aa6729d",
41     "d9130a8164549fe818874806e1c7014b",
42     "d79e1c308aa5bbcdeea8ed63df412da9",
43     "043f8582f241db351ce627e153e7f0e4",
44     "e33b4ddc9c38f2199c3e7b164fcc0536",
45 };
46
47 static char *pt(unsigned char *md);
48 int main(int argc, char *argv[])
49 {
50     int i, err = 0;
51     char **P, **R;
52     char *p;
53     unsigned char md[MD4_DIGEST_LENGTH];
54
55     P = test;
56     R = ret;
57     i = 1;
58     while (*P != NULL) {
59         EVP_Digest(&(P[0][0]), strlen((char *)*P), md, NULL, EVP_md4(), NULL);
60         p = pt(md);
61         if (strcmp(p, (char *)*R) != 0) {
62             printf("error calculating MD4 on '%s'\n", *P);
63             printf("got %s instead of %s\n", p, *R);
64             err++;
65         } else
66             printf("test %d ok\n", i);
67         i++;
68         R++;
69         P++;
70     }
71     EXIT(err);
72 }
73
74 static char *pt(unsigned char *md)
75 {
76     int i;
77     static char buf[80];
78
79     for (i = 0; i < MD4_DIGEST_LENGTH; i++)
80         sprintf(&(buf[i * 2]), "%02x", md[i]);
81     return (buf);
82 }
83 #endif