您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

119 行
4.3 KiB

  1. /* Copyright (c) 2016, 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. #include <openssl/ripemd.h>
  15. #include <memory>
  16. #include <stdio.h>
  17. #include <string.h>
  18. #include <gtest/gtest.h>
  19. #include "../../crypto/internal.h"
  20. #include "../../crypto/test/test_util.h"
  21. struct RIPEMDTestCase {
  22. const char *input;
  23. uint8_t expected[RIPEMD160_DIGEST_LENGTH];
  24. };
  25. static const RIPEMDTestCase kRIPEMDTestCases[] = {
  26. {"", {0x9c, 0x11, 0x85, 0xa5, 0xc5, 0xe9, 0xfc, 0x54, 0x61, 0x28,
  27. 0x08, 0x97, 0x7e, 0xe8, 0xf5, 0x48, 0xb2, 0x25, 0x8d, 0x31}},
  28. {"a", {0x0b, 0xdc, 0x9d, 0x2d, 0x25, 0x6b, 0x3e, 0xe9, 0xda, 0xae,
  29. 0x34, 0x7b, 0xe6, 0xf4, 0xdc, 0x83, 0x5a, 0x46, 0x7f, 0xfe}},
  30. {"abc", {0x8e, 0xb2, 0x08, 0xf7, 0xe0, 0x5d, 0x98, 0x7a, 0x9b, 0x04,
  31. 0x4a, 0x8e, 0x98, 0xc6, 0xb0, 0x87, 0xf1, 0x5a, 0x0b, 0xfc}},
  32. {"message digest",
  33. {0x5d, 0x06, 0x89, 0xef, 0x49, 0xd2, 0xfa, 0xe5, 0x72, 0xb8,
  34. 0x81, 0xb1, 0x23, 0xa8, 0x5f, 0xfa, 0x21, 0x59, 0x5f, 0x36}},
  35. {"abcdefghijklmnopqrstuvwxyz",
  36. {0xf7, 0x1c, 0x27, 0x10, 0x9c, 0x69, 0x2c, 0x1b, 0x56, 0xbb,
  37. 0xdc, 0xeb, 0x5b, 0x9d, 0x28, 0x65, 0xb3, 0x70, 0x8d, 0xbc}},
  38. {"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
  39. {0x12, 0xa0, 0x53, 0x38, 0x4a, 0x9c, 0x0c, 0x88, 0xe4, 0x05,
  40. 0xa0, 0x6c, 0x27, 0xdc, 0xf4, 0x9a, 0xda, 0x62, 0xeb, 0x2b}},
  41. {"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
  42. {0xb0, 0xe2, 0x0b, 0x6e, 0x31, 0x16, 0x64, 0x02, 0x86, 0xed,
  43. 0x3a, 0x87, 0xa5, 0x71, 0x30, 0x79, 0xb2, 0x1f, 0x51, 0x89}},
  44. {"1234567890123456789012345678901234567890123456789012345678901234567890123"
  45. "4567890",
  46. {0x9b, 0x75, 0x2e, 0x45, 0x57, 0x3d, 0x4b, 0x39, 0xf4, 0xdb,
  47. 0xd3, 0x32, 0x3c, 0xab, 0x82, 0xbf, 0x63, 0x32, 0x6b, 0xfb}},
  48. };
  49. // TODO(davidben): Convert this file to GTest properly.
  50. TEST(RIPEMDTest, RunTest) {
  51. unsigned test_num = 0;
  52. int ok = 1;
  53. for (const auto &test : kRIPEMDTestCases) {
  54. test_num++;
  55. const size_t input_len = strlen(test.input);
  56. for (size_t stride = 0; stride <= input_len; stride++) {
  57. uint8_t digest[RIPEMD160_DIGEST_LENGTH];
  58. if (stride == 0) {
  59. RIPEMD160(reinterpret_cast<const uint8_t *>(test.input), input_len,
  60. digest);
  61. } else {
  62. RIPEMD160_CTX ctx;
  63. RIPEMD160_Init(&ctx);
  64. for (size_t done = 0; done < input_len;) {
  65. const size_t remaining = input_len - done;
  66. size_t todo = stride;
  67. if (todo > remaining) {
  68. todo = remaining;
  69. }
  70. RIPEMD160_Update(&ctx, &test.input[done], todo);
  71. done += todo;
  72. }
  73. RIPEMD160_Final(digest, &ctx);
  74. }
  75. if (OPENSSL_memcmp(digest, test.expected, sizeof(digest)) != 0) {
  76. fprintf(stderr, "#%u: bad result with stride %u: ", test_num,
  77. static_cast<unsigned>(stride));
  78. hexdump(stderr, "", digest, sizeof(digest));
  79. ok = 0;
  80. }
  81. }
  82. }
  83. static const size_t kLargeBufSize = 1000000;
  84. std::unique_ptr<uint8_t[]> buf(new uint8_t[kLargeBufSize]);
  85. OPENSSL_memset(buf.get(), 'a', kLargeBufSize);
  86. uint8_t digest[RIPEMD160_DIGEST_LENGTH];
  87. RIPEMD160(buf.get(), kLargeBufSize, digest);
  88. static const uint8_t kMillionADigest[RIPEMD160_DIGEST_LENGTH] = {
  89. 0x52, 0x78, 0x32, 0x43, 0xc1, 0x69, 0x7b, 0xdb, 0xe1, 0x6d,
  90. 0x37, 0xf9, 0x7f, 0x68, 0xf0, 0x83, 0x25, 0xdc, 0x15, 0x28};
  91. if (OPENSSL_memcmp(digest, kMillionADigest, sizeof(digest)) != 0) {
  92. fprintf(stderr, u8"Digest incorrect for “million a's” test: ");
  93. hexdump(stderr, "", digest, sizeof(digest));
  94. ok = 0;
  95. }
  96. EXPECT_EQ(1, ok);
  97. }