blob: 6a6113d5c2a9194693688c41341bf5b1ec97c9f2 [file] [log] [blame]
David Benjamin9da90352014-11-04 21:23:33 -05001/* Copyright (c) 2014, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15#include <stdint.h>
16#include <stdio.h>
17#include <string.h>
18
19#include <openssl/crypto.h>
20#include <openssl/digest.h>
21#include <openssl/err.h>
22#include <openssl/md4.h>
23#include <openssl/md5.h>
24#include <openssl/sha.h>
25
David Benjamin94e597a2015-03-22 19:46:59 -040026#include "../test/scoped_types.h"
David Benjamin9da90352014-11-04 21:23:33 -050027
David Benjamin94e597a2015-03-22 19:46:59 -040028
Brian Smith6e8fbfe2015-03-01 17:47:32 -080029struct MD {
30 // name is the name of the digest.
31 const char* name;
David Benjamin94e597a2015-03-22 19:46:59 -040032 // md_func is the digest to test.
Brian Smith6e8fbfe2015-03-01 17:47:32 -080033 const EVP_MD *(*func)(void);
David Benjamin94e597a2015-03-22 19:46:59 -040034 // one_shot_func is the convenience one-shot version of the
35 // digest.
David Benjamin9da90352014-11-04 21:23:33 -050036 uint8_t *(*one_shot_func)(const uint8_t *, size_t, uint8_t *);
Brian Smith6e8fbfe2015-03-01 17:47:32 -080037};
38
39static const MD md4 = { "MD4", &EVP_md4, nullptr };
40static const MD md5 = { "MD5", &EVP_md5, &MD5 };
41static const MD sha1 = { "SHA1", &EVP_sha1, &SHA1 };
42static const MD sha224 = { "SHA224", &EVP_sha224, &SHA224 };
43static const MD sha256 = { "SHA256", &EVP_sha256, &SHA256 };
44static const MD sha384 = { "SHA384", &EVP_sha384, &SHA384 };
45static const MD sha512 = { "SHA512", &EVP_sha512, &SHA512 };
46static const MD md5_sha1 = { "MD5-SHA1", &EVP_md5_sha1, nullptr };
47
48struct TestVector {
49 // md is the digest to test.
50 const MD &md;
David Benjamin94e597a2015-03-22 19:46:59 -040051 // input is a NUL-terminated string to hash.
David Benjamin9da90352014-11-04 21:23:33 -050052 const char *input;
David Benjamin94e597a2015-03-22 19:46:59 -040053 // repeat is the number of times to repeat input.
David Benjamin9da90352014-11-04 21:23:33 -050054 size_t repeat;
David Benjamin94e597a2015-03-22 19:46:59 -040055 // expected_hex is the expected digest in hexadecimal.
David Benjamin9da90352014-11-04 21:23:33 -050056 const char *expected_hex;
David Benjamin94e597a2015-03-22 19:46:59 -040057};
David Benjamin9da90352014-11-04 21:23:33 -050058
David Benjamin94e597a2015-03-22 19:46:59 -040059static const TestVector kTestVectors[] = {
60 // MD4 tests, from RFC 1320. (crypto/md4 does not provide a
61 // one-shot MD4 function.)
Brian Smith6e8fbfe2015-03-01 17:47:32 -080062 { md4, "", 1, "31d6cfe0d16ae931b73c59d7e0c089c0" },
63 { md4, "a", 1, "bde52cb31de33e46245e05fbdbd6fb24" },
64 { md4, "abc", 1, "a448017aaf21d8525fc10ae87aa6729d" },
65 { md4, "message digest", 1, "d9130a8164549fe818874806e1c7014b" },
66 { md4, "abcdefghijklmnopqrstuvwxyz", 1,
David Benjamin9da90352014-11-04 21:23:33 -050067 "d79e1c308aa5bbcdeea8ed63df412da9" },
Brian Smith6e8fbfe2015-03-01 17:47:32 -080068 { md4,
David Benjamin9da90352014-11-04 21:23:33 -050069 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 1,
70 "043f8582f241db351ce627e153e7f0e4" },
Brian Smith6e8fbfe2015-03-01 17:47:32 -080071 { md4, "1234567890", 8, "e33b4ddc9c38f2199c3e7b164fcc0536" },
David Benjamin9da90352014-11-04 21:23:33 -050072
David Benjamin94e597a2015-03-22 19:46:59 -040073 // MD5 tests, from RFC 1321.
Brian Smith6e8fbfe2015-03-01 17:47:32 -080074 { md5, "", 1, "d41d8cd98f00b204e9800998ecf8427e" },
75 { md5, "a", 1, "0cc175b9c0f1b6a831c399e269772661" },
76 { md5, "abc", 1, "900150983cd24fb0d6963f7d28e17f72" },
77 { md5, "message digest", 1, "f96b697d7cb7938d525a2f31aaf161d0" },
78 { md5, "abcdefghijklmnopqrstuvwxyz", 1,
David Benjamin9da90352014-11-04 21:23:33 -050079 "c3fcd3d76192e4007dfb496cca67e13b" },
Brian Smith6e8fbfe2015-03-01 17:47:32 -080080 { md5,
David Benjamin9da90352014-11-04 21:23:33 -050081 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 1,
82 "d174ab98d277d9f5a5611c2c9f419d9f" },
Brian Smith6e8fbfe2015-03-01 17:47:32 -080083 { md5, "1234567890", 8, "57edf4a22be3c955ac49da2e2107b67a" },
David Benjamin9da90352014-11-04 21:23:33 -050084
David Benjamin94e597a2015-03-22 19:46:59 -040085 // SHA-1 tests, from RFC 3174.
Brian Smith6e8fbfe2015-03-01 17:47:32 -080086 { sha1, "abc", 1, "a9993e364706816aba3e25717850c26c9cd0d89d" },
87 { sha1,
David Benjamin9da90352014-11-04 21:23:33 -050088 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 1,
89 "84983e441c3bd26ebaae4aa1f95129e5e54670f1" },
Brian Smith6e8fbfe2015-03-01 17:47:32 -080090 { sha1, "a", 1000000, "34aa973cd4c4daa4f61eeb2bdbad27316534016f" },
91 { sha1,
David Benjamin9da90352014-11-04 21:23:33 -050092 "0123456701234567012345670123456701234567012345670123456701234567", 10,
93 "dea356a2cddd90c7a7ecedc5ebb563934f460452" },
94
David Benjamin94e597a2015-03-22 19:46:59 -040095 // SHA-224 tests, from RFC 3874.
Brian Smith6e8fbfe2015-03-01 17:47:32 -080096 { sha224, "abc", 1,
David Benjamin9da90352014-11-04 21:23:33 -050097 "23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7" },
Brian Smith6e8fbfe2015-03-01 17:47:32 -080098 { sha224,
David Benjamin9da90352014-11-04 21:23:33 -050099 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 1,
100 "75388b16512776cc5dba5da1fd890150b0c6455cb4f58b1952522525" },
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800101 { sha224,
David Benjamin9da90352014-11-04 21:23:33 -0500102 "a", 1000000,
103 "20794655980c91d8bbb4c1ea97618a4bf03f42581948b2ee4ee7ad67" },
104
David Benjamin94e597a2015-03-22 19:46:59 -0400105 // SHA-256 tests, from NIST.
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800106 { sha256, "abc", 1,
David Benjamin9da90352014-11-04 21:23:33 -0500107 "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad" },
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800108 { sha256,
David Benjamin9da90352014-11-04 21:23:33 -0500109 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 1,
110 "248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1" },
111
David Benjamin94e597a2015-03-22 19:46:59 -0400112 // SHA-384 tests, from NIST.
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800113 { sha384, "abc", 1,
David Benjamin9da90352014-11-04 21:23:33 -0500114 "cb00753f45a35e8bb5a03d699ac65007272c32ab0eded1631a8b605a43ff5bed"
115 "8086072ba1e7cc2358baeca134c825a7" },
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800116 { sha384,
David Benjamin9da90352014-11-04 21:23:33 -0500117 "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"
118 "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", 1,
119 "09330c33f71147e83d192fc782cd1b4753111b173b3b05d22fa08086e3b0f712"
120 "fcc7c71a557e2db966c3e9fa91746039" },
121
David Benjamin94e597a2015-03-22 19:46:59 -0400122 // SHA-512 tests, from NIST.
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800123 { sha512, "abc", 1,
David Benjamin9da90352014-11-04 21:23:33 -0500124 "ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a"
125 "2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f" },
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800126 { sha512,
David Benjamin9da90352014-11-04 21:23:33 -0500127 "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn"
128 "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", 1,
129 "8e959b75dae313da8cf4f72814fc143f8f7779c6eb9f7fa17299aeadb6889018"
130 "501d289e4900f7e4331b99dec4b5433ac7d329eeb6dd26545e96e55b874be909" },
David Benjamin00505ec2014-11-26 16:38:00 -0500131
David Benjamin94e597a2015-03-22 19:46:59 -0400132 // MD5-SHA1 tests.
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800133 { md5_sha1, "abc", 1,
David Benjamin00505ec2014-11-26 16:38:00 -0500134 "900150983cd24fb0d6963f7d28e17f72a9993e364706816aba3e25717850c26c9cd0d89d" },
David Benjamin9da90352014-11-04 21:23:33 -0500135};
136
David Benjamin94e597a2015-03-22 19:46:59 -0400137static bool CompareDigest(const TestVector *test,
David Benjamin9da90352014-11-04 21:23:33 -0500138 const uint8_t *digest,
139 size_t digest_len) {
140 static const char kHexTable[] = "0123456789abcdef";
141 size_t i;
142 char digest_hex[2*EVP_MAX_MD_SIZE + 1];
143
144 for (i = 0; i < digest_len; i++) {
145 digest_hex[2*i] = kHexTable[digest[i] >> 4];
146 digest_hex[2*i + 1] = kHexTable[digest[i] & 0xf];
147 }
148 digest_hex[2*digest_len] = '\0';
149
150 if (strcmp(digest_hex, test->expected_hex) != 0) {
151 fprintf(stderr, "%s(\"%s\" * %d) = %s; want %s\n",
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800152 test->md.name, test->input, (int)test->repeat,
David Benjamin9da90352014-11-04 21:23:33 -0500153 digest_hex, test->expected_hex);
David Benjamin94e597a2015-03-22 19:46:59 -0400154 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500155 }
156
David Benjamin94e597a2015-03-22 19:46:59 -0400157 return true;
David Benjamin9da90352014-11-04 21:23:33 -0500158}
159
David Benjamin94e597a2015-03-22 19:46:59 -0400160static int TestDigest(const TestVector *test) {
161 ScopedEVP_MD_CTX ctx;
David Benjamin9da90352014-11-04 21:23:33 -0500162
David Benjamin94e597a2015-03-22 19:46:59 -0400163 // Test the input provided.
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800164 if (!EVP_DigestInit_ex(ctx.get(), test->md.func(), NULL)) {
David Benjamin9da90352014-11-04 21:23:33 -0500165 fprintf(stderr, "EVP_DigestInit_ex failed\n");
David Benjamin94e597a2015-03-22 19:46:59 -0400166 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500167 }
David Benjamin94e597a2015-03-22 19:46:59 -0400168 for (size_t i = 0; i < test->repeat; i++) {
169 if (!EVP_DigestUpdate(ctx.get(), test->input, strlen(test->input))) {
David Benjamin9da90352014-11-04 21:23:33 -0500170 fprintf(stderr, "EVP_DigestUpdate failed\n");
David Benjamin94e597a2015-03-22 19:46:59 -0400171 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500172 }
173 }
David Benjamin94e597a2015-03-22 19:46:59 -0400174 uint8_t digest[EVP_MAX_MD_SIZE];
175 unsigned digest_len;
176 if (!EVP_DigestFinal_ex(ctx.get(), digest, &digest_len)) {
David Benjamin9da90352014-11-04 21:23:33 -0500177 fprintf(stderr, "EVP_DigestFinal_ex failed\n");
David Benjamin94e597a2015-03-22 19:46:59 -0400178 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500179 }
David Benjamin94e597a2015-03-22 19:46:59 -0400180 if (!CompareDigest(test, digest, digest_len)) {
181 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500182 }
183
David Benjamin94e597a2015-03-22 19:46:59 -0400184 // Test the input one character at a time.
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800185 if (!EVP_DigestInit_ex(ctx.get(), test->md.func(), NULL)) {
David Benjamin9da90352014-11-04 21:23:33 -0500186 fprintf(stderr, "EVP_DigestInit_ex failed\n");
David Benjamin94e597a2015-03-22 19:46:59 -0400187 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500188 }
David Benjamin94e597a2015-03-22 19:46:59 -0400189 if (!EVP_DigestUpdate(ctx.get(), NULL, 0)) {
David Benjamin9da90352014-11-04 21:23:33 -0500190 fprintf(stderr, "EVP_DigestUpdate failed\n");
David Benjamin94e597a2015-03-22 19:46:59 -0400191 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500192 }
David Benjamin94e597a2015-03-22 19:46:59 -0400193 for (size_t i = 0; i < test->repeat; i++) {
194 for (const char *p = test->input; *p; p++) {
195 if (!EVP_DigestUpdate(ctx.get(), p, 1)) {
David Benjamin9da90352014-11-04 21:23:33 -0500196 fprintf(stderr, "EVP_DigestUpdate failed\n");
David Benjamin94e597a2015-03-22 19:46:59 -0400197 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500198 }
199 }
200 }
David Benjamin94e597a2015-03-22 19:46:59 -0400201 if (!EVP_DigestFinal_ex(ctx.get(), digest, &digest_len)) {
David Benjamin9da90352014-11-04 21:23:33 -0500202 fprintf(stderr, "EVP_DigestFinal_ex failed\n");
David Benjamin94e597a2015-03-22 19:46:59 -0400203 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500204 }
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800205 if (digest_len != EVP_MD_size(test->md.func())) {
David Benjamin9da90352014-11-04 21:23:33 -0500206 fprintf(stderr, "EVP_MD_size output incorrect\n");
David Benjamin94e597a2015-03-22 19:46:59 -0400207 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500208 }
David Benjamin94e597a2015-03-22 19:46:59 -0400209 if (!CompareDigest(test, digest, digest_len)) {
210 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500211 }
212
David Benjamin94e597a2015-03-22 19:46:59 -0400213 // Test the one-shot function.
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800214 if (test->md.one_shot_func && test->repeat == 1) {
215 uint8_t *out = test->md.one_shot_func((const uint8_t *)test->input,
216 strlen(test->input), digest);
David Benjamin9da90352014-11-04 21:23:33 -0500217 if (out != digest) {
218 fprintf(stderr, "one_shot_func gave incorrect return\n");
David Benjamin94e597a2015-03-22 19:46:59 -0400219 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500220 }
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800221 if (!CompareDigest(test, digest, EVP_MD_size(test->md.func()))) {
David Benjamin94e597a2015-03-22 19:46:59 -0400222 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500223 }
224
David Benjamin94e597a2015-03-22 19:46:59 -0400225 // Test the deprecated static buffer variant, until it's removed.
Brian Smith6e8fbfe2015-03-01 17:47:32 -0800226 out = test->md.one_shot_func((const uint8_t *)test->input,
227 strlen(test->input), NULL);
228 if (!CompareDigest(test, out, EVP_MD_size(test->md.func()))) {
David Benjamin94e597a2015-03-22 19:46:59 -0400229 return false;
David Benjamin9da90352014-11-04 21:23:33 -0500230 }
231 }
232
David Benjamin94e597a2015-03-22 19:46:59 -0400233 return true;
David Benjamin9da90352014-11-04 21:23:33 -0500234}
235
Matt Braithwaite9f8ef2d2015-04-28 19:38:03 -0700236static int TestGetters() {
237 if (EVP_get_digestbyname("RSA-SHA512") == NULL ||
238 EVP_get_digestbyname("sha512WithRSAEncryption") == NULL ||
239 EVP_get_digestbyname("nonsense") != NULL) {
240 return false;
241 }
242
243 return true;
244}
245
David Benjamin9da90352014-11-04 21:23:33 -0500246int main(void) {
David Benjamin9da90352014-11-04 21:23:33 -0500247 CRYPTO_library_init();
248 ERR_load_crypto_strings();
249
David Benjamin94e597a2015-03-22 19:46:59 -0400250 for (size_t i = 0; i < sizeof(kTestVectors) / sizeof(kTestVectors[0]); i++) {
251 if (!TestDigest(&kTestVectors[i])) {
David Benjamin9da90352014-11-04 21:23:33 -0500252 fprintf(stderr, "Test %d failed\n", (int)i);
253 return 1;
254 }
255 }
256
Matt Braithwaite9f8ef2d2015-04-28 19:38:03 -0700257 if (!TestGetters()) {
258 return 1;
259 }
260
David Benjamin9da90352014-11-04 21:23:33 -0500261 printf("PASS\n");
262 return 0;
263}