hashsums_test.cc 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. #include <apt-pkg/md5.h>
  2. #include <apt-pkg/sha1.h>
  3. #include <apt-pkg/sha2.h>
  4. #include <apt-pkg/strutl.h>
  5. #include <apt-pkg/hashes.h>
  6. #include <iostream>
  7. #include <stdio.h>
  8. #include "assert.h"
  9. template <class T> void Test(const char *In,const char *Out)
  10. {
  11. T Sum;
  12. Sum.Add(In);
  13. equals(Sum.Result().Value(), Out);
  14. }
  15. template <class T> void TestMill(const char *Out)
  16. {
  17. T Sum;
  18. const unsigned char As[] = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
  19. unsigned Count = 1000000;
  20. for (; Count != 0;)
  21. {
  22. if (Count >= 64)
  23. {
  24. Sum.Add(As,64);
  25. Count -= 64;
  26. }
  27. else
  28. {
  29. Sum.Add(As,Count);
  30. Count = 0;
  31. }
  32. }
  33. if (stringcasecmp(Sum.Result().Value(), Out) != 0)
  34. abort();
  35. }
  36. int main(int argc, char** argv)
  37. {
  38. // From FIPS PUB 180-1
  39. Test<SHA1Summation>("","da39a3ee5e6b4b0d3255bfef95601890afd80709");
  40. Test<SHA1Summation>("abc","a9993e364706816aba3e25717850c26c9cd0d89d");
  41. Test<SHA1Summation>("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
  42. "84983e441c3bd26ebaae4aa1f95129e5e54670f1");
  43. TestMill<SHA1Summation>("34aa973cd4c4daa4f61eeb2bdbad27316534016f");
  44. // MD5 tests from RFC 1321
  45. Test<MD5Summation>("","d41d8cd98f00b204e9800998ecf8427e");
  46. Test<MD5Summation>("a","0cc175b9c0f1b6a831c399e269772661");
  47. Test<MD5Summation>("abc","900150983cd24fb0d6963f7d28e17f72");
  48. Test<MD5Summation>("message digest","f96b697d7cb7938d525a2f31aaf161d0");
  49. Test<MD5Summation>("abcdefghijklmnopqrstuvwxyz","c3fcd3d76192e4007dfb496cca67e13b");
  50. Test<MD5Summation>("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
  51. "d174ab98d277d9f5a5611c2c9f419d9f");
  52. Test<MD5Summation>("12345678901234567890123456789012345678901234567890123456789012345678901234567890",
  53. "57edf4a22be3c955ac49da2e2107b67a");
  54. // SHA-256, From FIPS 180-2
  55. Test<SHA256Summation>("", "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855");
  56. Test<SHA256Summation>("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
  57. "248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1");
  58. // SHA-512
  59. Test<SHA512Summation>("",
  60. "cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce"
  61. "47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e");
  62. Test<SHA512Summation>(
  63. "abc",
  64. "ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a"
  65. "2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f");
  66. Test<MD5Summation>("The quick brown fox jumps over the lazy dog", "9e107d9d372bb6826bd81d3542a419d6");
  67. Test<MD5Summation>("The quick brown fox jumps over the lazy dog.", "e4d909c290d0fb1ca068ffaddf22cbd0");
  68. Test<SHA1Summation>("The quick brown fox jumps over the lazy dog", "2fd4e1c67a2d28fced849ee1bb76e7391b93eb12");
  69. Test<SHA1Summation>("The quick brown fox jumps over the lazy cog", "de9f2c7fd25e1b3afad3e85a0bd17d9b100db4b3");
  70. Test<SHA256Summation>("The quick brown fox jumps over the lazy dog", "d7a8fbb307d7809469ca9abcb0082e4f8d5651e46d3cdb762d02d0bf37c9e592");
  71. Test<SHA256Summation>("The quick brown fox jumps over the lazy dog.", "ef537f25c895bfa782526529a9b63d97aa631564d5d789c2b765448c8635fb6c");
  72. Test<SHA512Summation>("The quick brown fox jumps over the lazy dog", "07e547d9586f6a73f73fbac0435ed76951218fb7d0c8d788a309d785436bbb64"
  73. "2e93a252a954f23912547d1e8a3b5ed6e1bfd7097821233fa0538f3db854fee6");
  74. Test<SHA512Summation>("The quick brown fox jumps over the lazy dog.", "91ea1245f20d46ae9a037a989f54f1f790f0a47607eeb8a14d12890cea77a1bb"
  75. "c6c7ed9cf205e67b7f2b8fd4c7dfd3a7a8617e45f3c463d481c7e586c39ac1ed");
  76. FILE* fd = fopen(argv[1], "r");
  77. if (fd == NULL) {
  78. std::cerr << "Can't open file for 1. testing: " << argv[1] << std::endl;
  79. return 1;
  80. }
  81. {
  82. Hashes hashes;
  83. hashes.AddFD(fileno(fd));
  84. equals(argv[2], hashes.MD5.Result().Value());
  85. equals(argv[3], hashes.SHA1.Result().Value());
  86. equals(argv[4], hashes.SHA256.Result().Value());
  87. equals(argv[5], hashes.SHA512.Result().Value());
  88. }
  89. fseek(fd, 0L, SEEK_END);
  90. unsigned long sz = ftell(fd);
  91. fseek(fd, 0L, SEEK_SET);
  92. {
  93. Hashes hashes;
  94. hashes.AddFD(fileno(fd), sz);
  95. equals(argv[2], hashes.MD5.Result().Value());
  96. equals(argv[3], hashes.SHA1.Result().Value());
  97. equals(argv[4], hashes.SHA256.Result().Value());
  98. equals(argv[5], hashes.SHA512.Result().Value());
  99. }
  100. fseek(fd, 0L, SEEK_SET);
  101. {
  102. MD5Summation md5;
  103. md5.AddFD(fileno(fd));
  104. equals(argv[2], md5.Result().Value());
  105. }
  106. fseek(fd, 0L, SEEK_SET);
  107. {
  108. SHA1Summation sha1;
  109. sha1.AddFD(fileno(fd));
  110. equals(argv[3], sha1.Result().Value());
  111. }
  112. fseek(fd, 0L, SEEK_SET);
  113. {
  114. SHA256Summation sha2;
  115. sha2.AddFD(fileno(fd));
  116. equals(argv[4], sha2.Result().Value());
  117. }
  118. fseek(fd, 0L, SEEK_SET);
  119. {
  120. SHA512Summation sha2;
  121. sha2.AddFD(fileno(fd));
  122. equals(argv[5], sha2.Result().Value());
  123. }
  124. fclose(fd);
  125. // test HashString code
  126. {
  127. HashString sha2("SHA256", argv[4]);
  128. equals(sha2.VerifyFile(argv[1]), true);
  129. }
  130. {
  131. HashString sha2("SHA512", argv[5]);
  132. equals(sha2.VerifyFile(argv[1]), true);
  133. }
  134. {
  135. HashString sha2("SHA256:" + std::string(argv[4]));
  136. equals(sha2.VerifyFile(argv[1]), true);
  137. }
  138. return 0;
  139. }