David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 1 | /* 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 | |
Martin Kreichgauer | 19d5cf8 | 2016-08-09 17:48:22 -0700 | [diff] [blame] | 19 | #include <memory> |
| 20 | |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 21 | #include <gtest/gtest.h> |
| 22 | |
David Benjamin | e0ca487 | 2017-02-06 15:12:59 -0500 | [diff] [blame] | 23 | #include <openssl/asn1.h> |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 24 | #include <openssl/crypto.h> |
David Benjamin | f0e935d | 2016-09-06 18:10:19 -0400 | [diff] [blame] | 25 | #include <openssl/digest.h> |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 26 | #include <openssl/err.h> |
| 27 | #include <openssl/md4.h> |
| 28 | #include <openssl/md5.h> |
David Benjamin | d224240 | 2016-12-26 00:18:49 -0500 | [diff] [blame] | 29 | #include <openssl/nid.h> |
David Benjamin | e0ca487 | 2017-02-06 15:12:59 -0500 | [diff] [blame] | 30 | #include <openssl/obj.h> |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 31 | #include <openssl/sha.h> |
| 32 | |
Steven Valdez | cb96654 | 2016-08-17 16:56:14 -0400 | [diff] [blame] | 33 | #include "../internal.h" |
| 34 | |
| 35 | |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 36 | struct MD { |
| 37 | // name is the name of the digest. |
| 38 | const char* name; |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 39 | // md_func is the digest to test. |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 40 | const EVP_MD *(*func)(void); |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 41 | // one_shot_func is the convenience one-shot version of the |
| 42 | // digest. |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 43 | uint8_t *(*one_shot_func)(const uint8_t *, size_t, uint8_t *); |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 44 | }; |
| 45 | |
| 46 | static const MD md4 = { "MD4", &EVP_md4, nullptr }; |
| 47 | static const MD md5 = { "MD5", &EVP_md5, &MD5 }; |
| 48 | static const MD sha1 = { "SHA1", &EVP_sha1, &SHA1 }; |
| 49 | static const MD sha224 = { "SHA224", &EVP_sha224, &SHA224 }; |
| 50 | static const MD sha256 = { "SHA256", &EVP_sha256, &SHA256 }; |
| 51 | static const MD sha384 = { "SHA384", &EVP_sha384, &SHA384 }; |
| 52 | static const MD sha512 = { "SHA512", &EVP_sha512, &SHA512 }; |
| 53 | static const MD md5_sha1 = { "MD5-SHA1", &EVP_md5_sha1, nullptr }; |
| 54 | |
| 55 | struct TestVector { |
| 56 | // md is the digest to test. |
| 57 | const MD &md; |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 58 | // input is a NUL-terminated string to hash. |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 59 | const char *input; |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 60 | // repeat is the number of times to repeat input. |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 61 | size_t repeat; |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 62 | // expected_hex is the expected digest in hexadecimal. |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 63 | const char *expected_hex; |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 64 | }; |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 65 | |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 66 | static const TestVector kTestVectors[] = { |
| 67 | // MD4 tests, from RFC 1320. (crypto/md4 does not provide a |
| 68 | // one-shot MD4 function.) |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 69 | { md4, "", 1, "31d6cfe0d16ae931b73c59d7e0c089c0" }, |
| 70 | { md4, "a", 1, "bde52cb31de33e46245e05fbdbd6fb24" }, |
| 71 | { md4, "abc", 1, "a448017aaf21d8525fc10ae87aa6729d" }, |
| 72 | { md4, "message digest", 1, "d9130a8164549fe818874806e1c7014b" }, |
| 73 | { md4, "abcdefghijklmnopqrstuvwxyz", 1, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 74 | "d79e1c308aa5bbcdeea8ed63df412da9" }, |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 75 | { md4, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 76 | "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 1, |
| 77 | "043f8582f241db351ce627e153e7f0e4" }, |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 78 | { md4, "1234567890", 8, "e33b4ddc9c38f2199c3e7b164fcc0536" }, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 79 | |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 80 | // MD5 tests, from RFC 1321. |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 81 | { md5, "", 1, "d41d8cd98f00b204e9800998ecf8427e" }, |
| 82 | { md5, "a", 1, "0cc175b9c0f1b6a831c399e269772661" }, |
| 83 | { md5, "abc", 1, "900150983cd24fb0d6963f7d28e17f72" }, |
| 84 | { md5, "message digest", 1, "f96b697d7cb7938d525a2f31aaf161d0" }, |
| 85 | { md5, "abcdefghijklmnopqrstuvwxyz", 1, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 86 | "c3fcd3d76192e4007dfb496cca67e13b" }, |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 87 | { md5, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 88 | "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", 1, |
| 89 | "d174ab98d277d9f5a5611c2c9f419d9f" }, |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 90 | { md5, "1234567890", 8, "57edf4a22be3c955ac49da2e2107b67a" }, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 91 | |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 92 | // SHA-1 tests, from RFC 3174. |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 93 | { sha1, "abc", 1, "a9993e364706816aba3e25717850c26c9cd0d89d" }, |
| 94 | { sha1, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 95 | "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 1, |
| 96 | "84983e441c3bd26ebaae4aa1f95129e5e54670f1" }, |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 97 | { sha1, "a", 1000000, "34aa973cd4c4daa4f61eeb2bdbad27316534016f" }, |
| 98 | { sha1, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 99 | "0123456701234567012345670123456701234567012345670123456701234567", 10, |
| 100 | "dea356a2cddd90c7a7ecedc5ebb563934f460452" }, |
| 101 | |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 102 | // SHA-224 tests, from RFC 3874. |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 103 | { sha224, "abc", 1, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 104 | "23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7" }, |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 105 | { sha224, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 106 | "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 1, |
| 107 | "75388b16512776cc5dba5da1fd890150b0c6455cb4f58b1952522525" }, |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 108 | { sha224, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 109 | "a", 1000000, |
| 110 | "20794655980c91d8bbb4c1ea97618a4bf03f42581948b2ee4ee7ad67" }, |
| 111 | |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 112 | // SHA-256 tests, from NIST. |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 113 | { sha256, "abc", 1, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 114 | "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad" }, |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 115 | { sha256, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 116 | "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 1, |
| 117 | "248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1" }, |
| 118 | |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 119 | // SHA-384 tests, from NIST. |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 120 | { sha384, "abc", 1, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 121 | "cb00753f45a35e8bb5a03d699ac65007272c32ab0eded1631a8b605a43ff5bed" |
| 122 | "8086072ba1e7cc2358baeca134c825a7" }, |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 123 | { sha384, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 124 | "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn" |
| 125 | "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", 1, |
| 126 | "09330c33f71147e83d192fc782cd1b4753111b173b3b05d22fa08086e3b0f712" |
| 127 | "fcc7c71a557e2db966c3e9fa91746039" }, |
| 128 | |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 129 | // SHA-512 tests, from NIST. |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 130 | { sha512, "abc", 1, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 131 | "ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a" |
| 132 | "2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f" }, |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 133 | { sha512, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 134 | "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn" |
| 135 | "hijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", 1, |
| 136 | "8e959b75dae313da8cf4f72814fc143f8f7779c6eb9f7fa17299aeadb6889018" |
| 137 | "501d289e4900f7e4331b99dec4b5433ac7d329eeb6dd26545e96e55b874be909" }, |
David Benjamin | 00505ec | 2014-11-26 16:38:00 -0500 | [diff] [blame] | 138 | |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 139 | // MD5-SHA1 tests. |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 140 | { md5_sha1, "abc", 1, |
David Benjamin | 00505ec | 2014-11-26 16:38:00 -0500 | [diff] [blame] | 141 | "900150983cd24fb0d6963f7d28e17f72a9993e364706816aba3e25717850c26c9cd0d89d" }, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 142 | }; |
| 143 | |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 144 | static void CompareDigest(const TestVector *test, |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 145 | const uint8_t *digest, |
| 146 | size_t digest_len) { |
| 147 | static const char kHexTable[] = "0123456789abcdef"; |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 148 | char digest_hex[2*EVP_MAX_MD_SIZE + 1]; |
| 149 | |
David Benjamin | 5409123 | 2016-09-05 12:47:25 -0400 | [diff] [blame] | 150 | for (size_t i = 0; i < digest_len; i++) { |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 151 | digest_hex[2*i] = kHexTable[digest[i] >> 4]; |
| 152 | digest_hex[2*i + 1] = kHexTable[digest[i] & 0xf]; |
| 153 | } |
| 154 | digest_hex[2*digest_len] = '\0'; |
| 155 | |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 156 | EXPECT_STREQ(test->expected_hex, digest_hex); |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 157 | } |
| 158 | |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 159 | static void TestDigest(const TestVector *test) { |
David Benjamin | aac1e2d | 2016-12-06 22:35:41 -0500 | [diff] [blame] | 160 | bssl::ScopedEVP_MD_CTX ctx; |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 161 | |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 162 | // Test the input provided. |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 163 | ASSERT_TRUE(EVP_DigestInit_ex(ctx.get(), test->md.func(), NULL)); |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 164 | for (size_t i = 0; i < test->repeat; i++) { |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 165 | ASSERT_TRUE(EVP_DigestUpdate(ctx.get(), test->input, strlen(test->input))); |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 166 | } |
David Benjamin | 0375127 | 2016-08-01 18:25:52 -0400 | [diff] [blame] | 167 | std::unique_ptr<uint8_t[]> digest(new uint8_t[EVP_MD_size(test->md.func())]); |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 168 | unsigned digest_len; |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 169 | ASSERT_TRUE(EVP_DigestFinal_ex(ctx.get(), digest.get(), &digest_len)); |
| 170 | CompareDigest(test, digest.get(), digest_len); |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 171 | |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 172 | // Test the input one character at a time. |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 173 | ASSERT_TRUE(EVP_DigestInit_ex(ctx.get(), test->md.func(), NULL)); |
| 174 | ASSERT_TRUE(EVP_DigestUpdate(ctx.get(), NULL, 0)); |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 175 | for (size_t i = 0; i < test->repeat; i++) { |
| 176 | for (const char *p = test->input; *p; p++) { |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 177 | ASSERT_TRUE(EVP_DigestUpdate(ctx.get(), p, 1)); |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 178 | } |
| 179 | } |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 180 | ASSERT_TRUE(EVP_DigestFinal_ex(ctx.get(), digest.get(), &digest_len)); |
| 181 | EXPECT_EQ(EVP_MD_size(test->md.func()), digest_len); |
| 182 | CompareDigest(test, digest.get(), digest_len); |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 183 | |
David Benjamin | 94e597a | 2015-03-22 19:46:59 -0400 | [diff] [blame] | 184 | // Test the one-shot function. |
Brian Smith | 6e8fbfe | 2015-03-01 17:47:32 -0800 | [diff] [blame] | 185 | if (test->md.one_shot_func && test->repeat == 1) { |
| 186 | uint8_t *out = test->md.one_shot_func((const uint8_t *)test->input, |
David Benjamin | 0375127 | 2016-08-01 18:25:52 -0400 | [diff] [blame] | 187 | strlen(test->input), digest.get()); |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 188 | // One-shot functions return their supplied buffers. |
| 189 | EXPECT_EQ(digest.get(), out); |
| 190 | CompareDigest(test, digest.get(), EVP_MD_size(test->md.func())); |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 191 | } |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 192 | } |
| 193 | |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 194 | TEST(DigestTest, TestVectors) { |
| 195 | for (size_t i = 0; i < OPENSSL_ARRAY_SIZE(kTestVectors); i++) { |
| 196 | SCOPED_TRACE(i); |
| 197 | TestDigest(&kTestVectors[i]); |
David Benjamin | d224240 | 2016-12-26 00:18:49 -0500 | [diff] [blame] | 198 | } |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 199 | } |
David Benjamin | d224240 | 2016-12-26 00:18:49 -0500 | [diff] [blame] | 200 | |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 201 | TEST(DigestTest, Getters) { |
| 202 | EXPECT_EQ(EVP_sha512(), EVP_get_digestbyname("RSA-SHA512")); |
| 203 | EXPECT_EQ(EVP_sha512(), EVP_get_digestbyname("sha512WithRSAEncryption")); |
| 204 | EXPECT_EQ(nullptr, EVP_get_digestbyname("nonsense")); |
| 205 | EXPECT_EQ(EVP_sha512(), EVP_get_digestbyname("SHA512")); |
| 206 | EXPECT_EQ(EVP_sha512(), EVP_get_digestbyname("sha512")); |
| 207 | |
| 208 | EXPECT_EQ(EVP_sha512(), EVP_get_digestbynid(NID_sha512)); |
| 209 | EXPECT_EQ(nullptr, EVP_get_digestbynid(NID_sha512WithRSAEncryption)); |
| 210 | EXPECT_EQ(nullptr, EVP_get_digestbynid(NID_undef)); |
Matt Braithwaite | 9f8ef2d | 2015-04-28 19:38:03 -0700 | [diff] [blame] | 211 | |
David Benjamin | e0ca487 | 2017-02-06 15:12:59 -0500 | [diff] [blame] | 212 | bssl::UniquePtr<ASN1_OBJECT> obj(OBJ_txt2obj("1.3.14.3.2.26", 0)); |
David Benjamin | 2505423 | 2017-05-17 20:30:18 -0400 | [diff] [blame] | 213 | ASSERT_TRUE(obj); |
| 214 | EXPECT_EQ(EVP_sha1(), EVP_get_digestbyobj(obj.get())); |
| 215 | EXPECT_EQ(EVP_md5_sha1(), EVP_get_digestbyobj(OBJ_nid2obj(NID_md5_sha1))); |
| 216 | EXPECT_EQ(EVP_sha1(), EVP_get_digestbyobj(OBJ_nid2obj(NID_sha1))); |
David Benjamin | 9da9035 | 2014-11-04 21:23:33 -0500 | [diff] [blame] | 217 | } |