Guest User

Untitled

a guest
Oct 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. #include <algorithm>
  2. #include <stdexcept>
  3. #include <array>
  4. #include <vector>
  5. #include <iostream>
  6.  
  7. #define _byteswap_uint64 __builtin_bswap64
  8. #define _rotr(x,k) (((x)>>(k)) | ((x)<<(32-(k))))
  9.  
  10. template<typename T> struct Output {
  11. std::array<T, 8> h;
  12. };
  13. template<typename T> struct Input {
  14. std::array<T, 16> c;
  15. };
  16. template<typename T> Output<T> sha2(Input<T> in) {
  17. T w[64];
  18. for(int i = 0; i < 16; i++)
  19. w[i] = in.c[i];
  20.  
  21. for(int i = 16; i < 64; i++) {
  22. auto s0 = _rotr(w[i - 15], 7) ^ _rotr(w[i - 15], 18) ^ (w[i - 15] >> 3);
  23.  
  24. auto s1 = _rotr(w[i - 2], 17) ^ _rotr(w[i - 2], 19) ^ (w[i - 2] >> 10);
  25. w[i] = w[i - 16] + s0 + w[i - 7] + s1;
  26. }
  27.  
  28. static const T k[] = {
  29. 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
  30. 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  31. 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  32. 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  33. 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
  34. 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  35. 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
  36. 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  37. 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  38. 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  39. 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
  40. 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  41. 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
  42. 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  43. 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  44. 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
  45. };
  46.  
  47. static const T h[] = {
  48. 0x6a09e667,
  49. 0xbb67ae85,
  50. 0x3c6ef372,
  51. 0xa54ff53a,
  52. 0x510e527f,
  53. 0x9b05688c,
  54. 0x1f83d9ab,
  55. 0x5be0cd19
  56. };
  57.  
  58. T loopvars[8];
  59. for(int i = 0; i < 8; i++)
  60. loopvars[i] = h[i];
  61.  
  62. for(int i = 0; i < 64; i++) {
  63. auto&& la = loopvars[0];
  64. auto&& lb = loopvars[1];
  65. auto&& lc = loopvars[2];
  66. auto&& ld = loopvars[3];
  67. auto&& le = loopvars[4];
  68. auto&& lf = loopvars[5];
  69. auto&& lg = loopvars[6];
  70. auto&& lh = loopvars[7];
  71.  
  72. auto s0 = _rotr(la, 2) ^ _rotr(la, 13) ^ _rotr(la, 22);
  73. auto maj = (la & lb) ^ (la & lc) ^ (lb & lc);
  74. auto t2 = s0 + maj;
  75.  
  76. auto s1 = _rotr(le, 6) ^ _rotr(le, 11) ^ _rotr(le, 25);
  77. auto ch = (le & lf) ^ ((~le) & lg);
  78. auto t1 = lh + s1 + ch + k[i] + w[i];
  79.  
  80. lh = lg;
  81. lg = lf;
  82. lf = le;
  83. le = ld + t1;
  84. ld = lc;
  85. lc = lb;
  86. lb = la;
  87. la = t1 + t2;
  88. }
  89. Output<T> output;
  90. for(int i = 0; i < 8; i++) {
  91. output.h[i] = h[i] + loopvars[i];
  92. }
  93. return output;
  94. }
  95. Output<unsigned int> SHA2(std::vector<char> bytes) {
  96. auto bitlen = bytes.size() * 8;
  97. auto big_endian_bitlen = ::_byteswap_uint64(bitlen);
  98. if (bitlen > 440)
  99. throw std::runtime_error("Epic fail!");
  100. Input<unsigned int> in;
  101. for(int i = 0; i < 16; i++) {
  102. in.c[i] = 0;
  103. }
  104. for(int i = 0; i < bitlen; i++) {
  105. in.c[i / 32] |= ((bytes[i / 8] >> (i % 8))) << (i % 32);
  106. }
  107. in.c[bitlen / 32] |= (1 << (bitlen % 32));
  108. // all zero by default, so no need to append the extra bits
  109. in.c[14] = (big_endian_bitlen >> 32);
  110. in.c[15] = big_endian_bitlen;
  111. return sha2(in);
  112. }
  113.  
  114. int main(int argc, const char *argv[])
  115. {
  116. std::vector<char> bytes;
  117. for(auto o : SHA2(bytes).h)
  118. std::cout << std::hex << o << ' ';
  119. std::cout << '\n';
  120. }
Add Comment
Please, Sign In to add comment