sha512.c 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. /* LibTomCrypt, modular cryptographic library -- Tom St Denis
  2. *
  3. * LibTomCrypt is a library that provides various cryptographic
  4. * algorithms in a highly modular and flexible manner.
  5. *
  6. * The library is free for all purposes without any express
  7. * guarantee it works.
  8. *
  9. * Tom St Denis, [email protected], http://libtomcrypt.org
  10. */
  11. /* SHA512 by Tom St Denis */
  12. #include "mycrypt.h"
  13. #ifdef SHA512
  14. const struct _hash_descriptor sha512_desc =
  15. {
  16. "sha512",
  17. 5,
  18. 64,
  19. 128,
  20. /* DER identifier */
  21. { 0x30, 0x51, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86,
  22. 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03, 0x05,
  23. 0x00, 0x04, 0x40 },
  24. 19,
  25. &sha512_init,
  26. &sha512_process,
  27. &sha512_done,
  28. &sha512_test
  29. };
  30. /* the K array */
  31. static const ulong64 K[80] = {
  32. CONST64(0x428a2f98d728ae22), CONST64(0x7137449123ef65cd),
  33. CONST64(0xb5c0fbcfec4d3b2f), CONST64(0xe9b5dba58189dbbc),
  34. CONST64(0x3956c25bf348b538), CONST64(0x59f111f1b605d019),
  35. CONST64(0x923f82a4af194f9b), CONST64(0xab1c5ed5da6d8118),
  36. CONST64(0xd807aa98a3030242), CONST64(0x12835b0145706fbe),
  37. CONST64(0x243185be4ee4b28c), CONST64(0x550c7dc3d5ffb4e2),
  38. CONST64(0x72be5d74f27b896f), CONST64(0x80deb1fe3b1696b1),
  39. CONST64(0x9bdc06a725c71235), CONST64(0xc19bf174cf692694),
  40. CONST64(0xe49b69c19ef14ad2), CONST64(0xefbe4786384f25e3),
  41. CONST64(0x0fc19dc68b8cd5b5), CONST64(0x240ca1cc77ac9c65),
  42. CONST64(0x2de92c6f592b0275), CONST64(0x4a7484aa6ea6e483),
  43. CONST64(0x5cb0a9dcbd41fbd4), CONST64(0x76f988da831153b5),
  44. CONST64(0x983e5152ee66dfab), CONST64(0xa831c66d2db43210),
  45. CONST64(0xb00327c898fb213f), CONST64(0xbf597fc7beef0ee4),
  46. CONST64(0xc6e00bf33da88fc2), CONST64(0xd5a79147930aa725),
  47. CONST64(0x06ca6351e003826f), CONST64(0x142929670a0e6e70),
  48. CONST64(0x27b70a8546d22ffc), CONST64(0x2e1b21385c26c926),
  49. CONST64(0x4d2c6dfc5ac42aed), CONST64(0x53380d139d95b3df),
  50. CONST64(0x650a73548baf63de), CONST64(0x766a0abb3c77b2a8),
  51. CONST64(0x81c2c92e47edaee6), CONST64(0x92722c851482353b),
  52. CONST64(0xa2bfe8a14cf10364), CONST64(0xa81a664bbc423001),
  53. CONST64(0xc24b8b70d0f89791), CONST64(0xc76c51a30654be30),
  54. CONST64(0xd192e819d6ef5218), CONST64(0xd69906245565a910),
  55. CONST64(0xf40e35855771202a), CONST64(0x106aa07032bbd1b8),
  56. CONST64(0x19a4c116b8d2d0c8), CONST64(0x1e376c085141ab53),
  57. CONST64(0x2748774cdf8eeb99), CONST64(0x34b0bcb5e19b48a8),
  58. CONST64(0x391c0cb3c5c95a63), CONST64(0x4ed8aa4ae3418acb),
  59. CONST64(0x5b9cca4f7763e373), CONST64(0x682e6ff3d6b2b8a3),
  60. CONST64(0x748f82ee5defb2fc), CONST64(0x78a5636f43172f60),
  61. CONST64(0x84c87814a1f0ab72), CONST64(0x8cc702081a6439ec),
  62. CONST64(0x90befffa23631e28), CONST64(0xa4506cebde82bde9),
  63. CONST64(0xbef9a3f7b2c67915), CONST64(0xc67178f2e372532b),
  64. CONST64(0xca273eceea26619c), CONST64(0xd186b8c721c0c207),
  65. CONST64(0xeada7dd6cde0eb1e), CONST64(0xf57d4f7fee6ed178),
  66. CONST64(0x06f067aa72176fba), CONST64(0x0a637dc5a2c898a6),
  67. CONST64(0x113f9804bef90dae), CONST64(0x1b710b35131c471b),
  68. CONST64(0x28db77f523047d84), CONST64(0x32caab7b40c72493),
  69. CONST64(0x3c9ebe0a15c9bebc), CONST64(0x431d67c49c100d4c),
  70. CONST64(0x4cc5d4becb3e42b6), CONST64(0x597f299cfc657e2a),
  71. CONST64(0x5fcb6fab3ad6faec), CONST64(0x6c44198c4a475817)
  72. };
  73. /* Various logical functions */
  74. #define Ch(x,y,z) (z ^ (x & (y ^ z)))
  75. #define Maj(x,y,z) (((x | y) & z) | (x & y))
  76. #define S(x, n) ROR64((x),(n))
  77. #define R(x, n) (((x)&CONST64(0xFFFFFFFFFFFFFFFF))>>((ulong64)n))
  78. #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39))
  79. #define Sigma1(x) (S(x, 14) ^ S(x, 18) ^ S(x, 41))
  80. #define Gamma0(x) (S(x, 1) ^ S(x, 8) ^ R(x, 7))
  81. #define Gamma1(x) (S(x, 19) ^ S(x, 61) ^ R(x, 6))
  82. /* compress 1024-bits */
  83. #ifdef CLEAN_STACK
  84. static int _sha512_compress(hash_state * md, unsigned char *buf)
  85. #else
  86. static int sha512_compress(hash_state * md, unsigned char *buf)
  87. #endif
  88. {
  89. ulong64 S[8], W[80], t0, t1;
  90. int i;
  91. /* copy state into S */
  92. for (i = 0; i < 8; i++) {
  93. S[i] = md->sha512.state[i];
  94. }
  95. /* copy the state into 1024-bits into W[0..15] */
  96. for (i = 0; i < 16; i++) {
  97. LOAD64H(W[i], buf + (8*i));
  98. }
  99. /* fill W[16..79] */
  100. for (i = 16; i < 80; i++) {
  101. W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) + W[i - 16];
  102. }
  103. /* Compress */
  104. #ifdef SMALL_CODE
  105. for (i = 0; i < 80; i++) {
  106. t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
  107. t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]);
  108. S[7] = S[6];
  109. S[6] = S[5];
  110. S[5] = S[4];
  111. S[4] = S[3] + t0;
  112. S[3] = S[2];
  113. S[2] = S[1];
  114. S[1] = S[0];
  115. S[0] = t0 + t1;
  116. }
  117. #else
  118. #define RND(a,b,c,d,e,f,g,h,i) \
  119. t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
  120. t1 = Sigma0(a) + Maj(a, b, c); \
  121. d += t0; \
  122. h = t0 + t1;
  123. for (i = 0; i < 80; i += 8) {
  124. RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],i+0);
  125. RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],i+1);
  126. RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],i+2);
  127. RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],i+3);
  128. RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],i+4);
  129. RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],i+5);
  130. RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],i+6);
  131. RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],i+7);
  132. }
  133. #endif
  134. /* feedback */
  135. for (i = 0; i < 8; i++) {
  136. md->sha512.state[i] = md->sha512.state[i] + S[i];
  137. }
  138. return CRYPT_OK;
  139. }
  140. /* compress 1024-bits */
  141. #ifdef CLEAN_STACK
  142. static int sha512_compress(hash_state * md, unsigned char *buf)
  143. {
  144. int err;
  145. err = _sha512_compress(md, buf);
  146. burn_stack(sizeof(ulong64) * 90 + sizeof(int));
  147. return err;
  148. }
  149. #endif
  150. /* init the sha512 state */
  151. int sha512_init(hash_state * md)
  152. {
  153. _ARGCHK(md != NULL);
  154. md->sha512.curlen = 0;
  155. md->sha512.length = 0;
  156. md->sha512.state[0] = CONST64(0x6a09e667f3bcc908);
  157. md->sha512.state[1] = CONST64(0xbb67ae8584caa73b);
  158. md->sha512.state[2] = CONST64(0x3c6ef372fe94f82b);
  159. md->sha512.state[3] = CONST64(0xa54ff53a5f1d36f1);
  160. md->sha512.state[4] = CONST64(0x510e527fade682d1);
  161. md->sha512.state[5] = CONST64(0x9b05688c2b3e6c1f);
  162. md->sha512.state[6] = CONST64(0x1f83d9abfb41bd6b);
  163. md->sha512.state[7] = CONST64(0x5be0cd19137e2179);
  164. return CRYPT_OK;
  165. }
  166. HASH_PROCESS(sha512_process, sha512_compress, sha512, 128)
  167. int sha512_done(hash_state * md, unsigned char *hash)
  168. {
  169. int i;
  170. _ARGCHK(md != NULL);
  171. _ARGCHK(hash != NULL);
  172. if (md->sha512.curlen >= sizeof(md->sha512.buf)) {
  173. return CRYPT_INVALID_ARG;
  174. }
  175. /* increase the length of the message */
  176. md->sha512.length += md->sha512.curlen * CONST64(8);
  177. /* append the '1' bit */
  178. md->sha512.buf[md->sha512.curlen++] = (unsigned char)0x80;
  179. /* if the length is currently above 112 bytes we append zeros
  180. * then compress. Then we can fall back to padding zeros and length
  181. * encoding like normal.
  182. */
  183. if (md->sha512.curlen > 112) {
  184. while (md->sha512.curlen < 128) {
  185. md->sha512.buf[md->sha512.curlen++] = (unsigned char)0;
  186. }
  187. sha512_compress(md, md->sha512.buf);
  188. md->sha512.curlen = 0;
  189. }
  190. /* pad upto 120 bytes of zeroes
  191. * note: that from 112 to 120 is the 64 MSB of the length. We assume that you won't hash
  192. * > 2^64 bits of data... :-)
  193. */
  194. while (md->sha512.curlen < 120) {
  195. md->sha512.buf[md->sha512.curlen++] = (unsigned char)0;
  196. }
  197. /* store length */
  198. STORE64H(md->sha512.length, md->sha512.buf+120);
  199. sha512_compress(md, md->sha512.buf);
  200. /* copy output */
  201. for (i = 0; i < 8; i++) {
  202. STORE64H(md->sha512.state[i], hash+(8*i));
  203. }
  204. #ifdef CLEAN_STACK
  205. zeromem(md, sizeof(hash_state));
  206. #endif
  207. return CRYPT_OK;
  208. }
  209. int sha512_test(void)
  210. {
  211. #ifndef LTC_TEST
  212. return CRYPT_NOP;
  213. #else
  214. static const struct {
  215. char *msg;
  216. unsigned char hash[64];
  217. } tests[] = {
  218. { "abc",
  219. { 0xdd, 0xaf, 0x35, 0xa1, 0x93, 0x61, 0x7a, 0xba,
  220. 0xcc, 0x41, 0x73, 0x49, 0xae, 0x20, 0x41, 0x31,
  221. 0x12, 0xe6, 0xfa, 0x4e, 0x89, 0xa9, 0x7e, 0xa2,
  222. 0x0a, 0x9e, 0xee, 0xe6, 0x4b, 0x55, 0xd3, 0x9a,
  223. 0x21, 0x92, 0x99, 0x2a, 0x27, 0x4f, 0xc1, 0xa8,
  224. 0x36, 0xba, 0x3c, 0x23, 0xa3, 0xfe, 0xeb, 0xbd,
  225. 0x45, 0x4d, 0x44, 0x23, 0x64, 0x3c, 0xe8, 0x0e,
  226. 0x2a, 0x9a, 0xc9, 0x4f, 0xa5, 0x4c, 0xa4, 0x9f }
  227. },
  228. { "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
  229. { 0x8e, 0x95, 0x9b, 0x75, 0xda, 0xe3, 0x13, 0xda,
  230. 0x8c, 0xf4, 0xf7, 0x28, 0x14, 0xfc, 0x14, 0x3f,
  231. 0x8f, 0x77, 0x79, 0xc6, 0xeb, 0x9f, 0x7f, 0xa1,
  232. 0x72, 0x99, 0xae, 0xad, 0xb6, 0x88, 0x90, 0x18,
  233. 0x50, 0x1d, 0x28, 0x9e, 0x49, 0x00, 0xf7, 0xe4,
  234. 0x33, 0x1b, 0x99, 0xde, 0xc4, 0xb5, 0x43, 0x3a,
  235. 0xc7, 0xd3, 0x29, 0xee, 0xb6, 0xdd, 0x26, 0x54,
  236. 0x5e, 0x96, 0xe5, 0x5b, 0x87, 0x4b, 0xe9, 0x09 }
  237. },
  238. };
  239. int i;
  240. unsigned char tmp[64];
  241. hash_state md;
  242. for (i = 0; i < (int)(sizeof(tests) / sizeof(tests[0])); i++) {
  243. sha512_init(&md);
  244. sha512_process(&md, (unsigned char *)tests[i].msg, (unsigned long)strlen(tests[i].msg));
  245. sha512_done(&md, tmp);
  246. if (memcmp(tmp, tests[i].hash, 64) != 0) {
  247. return CRYPT_FAIL_TESTVECTOR;
  248. }
  249. }
  250. return CRYPT_OK;
  251. #endif
  252. }
  253. #ifdef SHA384
  254. #include "sha384.c"
  255. #endif
  256. #endif