Add fips module integrity check
[openssl.git] / test / mdc2test.c
1 /*
2  * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (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 #include <openssl/provider.h>
12 #include <openssl/params.h>
13 #include <openssl/ossl_typ.h>
14 #include <openssl/core_names.h>
15 #include "internal/nelem.h"
16 #include "testutil.h"
17
18 #if defined(OPENSSL_NO_DES) && !defined(OPENSSL_NO_MDC2)
19 # define OPENSSL_NO_MDC2
20 #endif
21
22 #ifndef OPENSSL_NO_MDC2
23 # include <openssl/evp.h>
24 # include <openssl/mdc2.h>
25
26 # ifdef CHARSET_EBCDIC
27 #  include <openssl/ebcdic.h>
28 # endif
29
30 static unsigned char pad1[16] = {
31     0x42, 0xE5, 0x0C, 0xD2, 0x24, 0xBA, 0xCE, 0xBA,
32     0x76, 0x0B, 0xDD, 0x2B, 0xD4, 0x09, 0x28, 0x1A
33 };
34
35 static unsigned char pad2[16] = {
36     0x2E, 0x46, 0x79, 0xB5, 0xAD, 0xD9, 0xCA, 0x75,
37     0x35, 0xD8, 0x7A, 0xFE, 0xAB, 0x33, 0xBE, 0xE2
38 };
39
40 static int test_mdc2(void)
41 {
42     int testresult = 0;
43     unsigned int pad_type = 2;
44     unsigned char md[MDC2_DIGEST_LENGTH];
45     EVP_MD_CTX *c;
46     static char text[] = "Now is the time for all ";
47     size_t tlen = strlen(text), i = 0;
48     OSSL_PROVIDER *prov = NULL;
49     OSSL_PARAM params[2];
50
51     params[i++] = OSSL_PARAM_construct_uint(OSSL_DIGEST_PARAM_PAD_TYPE,
52                                             &pad_type),
53     params[i++] = OSSL_PARAM_construct_end();
54
55     prov = OSSL_PROVIDER_load(NULL, "legacy");
56 # ifdef CHARSET_EBCDIC
57     ebcdic2ascii(text, text, tlen);
58 # endif
59
60     c = EVP_MD_CTX_new();
61     if (!TEST_ptr(c)
62         || !TEST_true(EVP_DigestInit_ex(c, EVP_mdc2(), NULL))
63         || !TEST_true(EVP_DigestUpdate(c, (unsigned char *)text, tlen))
64         || !TEST_true(EVP_DigestFinal_ex(c, &(md[0]), NULL))
65         || !TEST_mem_eq(md, MDC2_DIGEST_LENGTH, pad1, MDC2_DIGEST_LENGTH)
66         || !TEST_true(EVP_DigestInit_ex(c, EVP_mdc2(), NULL)))
67         goto end;
68
69     if (!TEST_int_gt(EVP_MD_CTX_set_params(c, params), 0)
70         || !TEST_true(EVP_DigestUpdate(c, (unsigned char *)text, tlen))
71         || !TEST_true(EVP_DigestFinal_ex(c, &(md[0]), NULL))
72         || !TEST_mem_eq(md, MDC2_DIGEST_LENGTH, pad2, MDC2_DIGEST_LENGTH))
73         goto end;
74
75     testresult = 1;
76  end:
77     EVP_MD_CTX_free(c);
78     OSSL_PROVIDER_unload(prov);
79     return testresult;
80 }
81 #endif
82
83 int setup_tests(void)
84 {
85 #ifndef OPENSSL_NO_MDC2
86     ADD_TEST(test_mdc2);
87 #endif
88     return 1;
89 }