hash_sha512_cp.c 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. /*-
  2. * Copyright 2005,2007,2009 Colin Percival
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  15. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  18. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. * SUCH DAMAGE.
  25. *
  26. */
  27. #include <limits.h>
  28. #include <stdint.h>
  29. #include <stdlib.h>
  30. #include <string.h>
  31. #include <sys/types.h>
  32. #include "crypto_hash_sha512.h"
  33. #include "private/common.h"
  34. #include "utils.h"
  35. static void
  36. be64enc_vect(unsigned char *dst, const uint64_t *src, size_t len)
  37. {
  38. size_t i;
  39. for (i = 0; i < len / 8; i++) {
  40. STORE64_BE(dst + i * 8, src[i]);
  41. }
  42. }
  43. static void
  44. be64dec_vect(uint64_t *dst, const unsigned char *src, size_t len)
  45. {
  46. size_t i;
  47. for (i = 0; i < len / 8; i++) {
  48. dst[i] = LOAD64_BE(src + i * 8);
  49. }
  50. }
  51. static const uint64_t Krnd[80] = {
  52. 0x428a2f98d728ae22ULL, 0x7137449123ef65cdULL, 0xb5c0fbcfec4d3b2fULL,
  53. 0xe9b5dba58189dbbcULL, 0x3956c25bf348b538ULL, 0x59f111f1b605d019ULL,
  54. 0x923f82a4af194f9bULL, 0xab1c5ed5da6d8118ULL, 0xd807aa98a3030242ULL,
  55. 0x12835b0145706fbeULL, 0x243185be4ee4b28cULL, 0x550c7dc3d5ffb4e2ULL,
  56. 0x72be5d74f27b896fULL, 0x80deb1fe3b1696b1ULL, 0x9bdc06a725c71235ULL,
  57. 0xc19bf174cf692694ULL, 0xe49b69c19ef14ad2ULL, 0xefbe4786384f25e3ULL,
  58. 0x0fc19dc68b8cd5b5ULL, 0x240ca1cc77ac9c65ULL, 0x2de92c6f592b0275ULL,
  59. 0x4a7484aa6ea6e483ULL, 0x5cb0a9dcbd41fbd4ULL, 0x76f988da831153b5ULL,
  60. 0x983e5152ee66dfabULL, 0xa831c66d2db43210ULL, 0xb00327c898fb213fULL,
  61. 0xbf597fc7beef0ee4ULL, 0xc6e00bf33da88fc2ULL, 0xd5a79147930aa725ULL,
  62. 0x06ca6351e003826fULL, 0x142929670a0e6e70ULL, 0x27b70a8546d22ffcULL,
  63. 0x2e1b21385c26c926ULL, 0x4d2c6dfc5ac42aedULL, 0x53380d139d95b3dfULL,
  64. 0x650a73548baf63deULL, 0x766a0abb3c77b2a8ULL, 0x81c2c92e47edaee6ULL,
  65. 0x92722c851482353bULL, 0xa2bfe8a14cf10364ULL, 0xa81a664bbc423001ULL,
  66. 0xc24b8b70d0f89791ULL, 0xc76c51a30654be30ULL, 0xd192e819d6ef5218ULL,
  67. 0xd69906245565a910ULL, 0xf40e35855771202aULL, 0x106aa07032bbd1b8ULL,
  68. 0x19a4c116b8d2d0c8ULL, 0x1e376c085141ab53ULL, 0x2748774cdf8eeb99ULL,
  69. 0x34b0bcb5e19b48a8ULL, 0x391c0cb3c5c95a63ULL, 0x4ed8aa4ae3418acbULL,
  70. 0x5b9cca4f7763e373ULL, 0x682e6ff3d6b2b8a3ULL, 0x748f82ee5defb2fcULL,
  71. 0x78a5636f43172f60ULL, 0x84c87814a1f0ab72ULL, 0x8cc702081a6439ecULL,
  72. 0x90befffa23631e28ULL, 0xa4506cebde82bde9ULL, 0xbef9a3f7b2c67915ULL,
  73. 0xc67178f2e372532bULL, 0xca273eceea26619cULL, 0xd186b8c721c0c207ULL,
  74. 0xeada7dd6cde0eb1eULL, 0xf57d4f7fee6ed178ULL, 0x06f067aa72176fbaULL,
  75. 0x0a637dc5a2c898a6ULL, 0x113f9804bef90daeULL, 0x1b710b35131c471bULL,
  76. 0x28db77f523047d84ULL, 0x32caab7b40c72493ULL, 0x3c9ebe0a15c9bebcULL,
  77. 0x431d67c49c100d4cULL, 0x4cc5d4becb3e42b6ULL, 0x597f299cfc657e2aULL,
  78. 0x5fcb6fab3ad6faecULL, 0x6c44198c4a475817ULL
  79. };
  80. #define Ch(x, y, z) ((x & (y ^ z)) ^ z)
  81. #define Maj(x, y, z) ((x & (y | z)) | (y & z))
  82. #define SHR(x, n) (x >> n)
  83. #define ROTR(x, n) ROTR64(x, n)
  84. #define S0(x) (ROTR(x, 28) ^ ROTR(x, 34) ^ ROTR(x, 39))
  85. #define S1(x) (ROTR(x, 14) ^ ROTR(x, 18) ^ ROTR(x, 41))
  86. #define s0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7))
  87. #define s1(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHR(x, 6))
  88. #define RND(a, b, c, d, e, f, g, h, k) \
  89. h += S1(e) + Ch(e, f, g) + k; \
  90. d += h; \
  91. h += S0(a) + Maj(a, b, c);
  92. #define RNDr(S, W, i, ii) \
  93. RND(S[(80 - i) % 8], S[(81 - i) % 8], S[(82 - i) % 8], S[(83 - i) % 8], \
  94. S[(84 - i) % 8], S[(85 - i) % 8], S[(86 - i) % 8], S[(87 - i) % 8], \
  95. W[i + ii] + Krnd[i + ii])
  96. #define MSCH(W, ii, i) \
  97. W[i + ii + 16] = \
  98. s1(W[i + ii + 14]) + W[i + ii + 9] + s0(W[i + ii + 1]) + W[i + ii]
  99. static void
  100. SHA512_Transform(uint64_t *state, const uint8_t block[128], uint64_t W[80],
  101. uint64_t S[8])
  102. {
  103. int i;
  104. be64dec_vect(W, block, 128);
  105. memcpy(S, state, 64);
  106. for (i = 0; i < 80; i += 16) {
  107. RNDr(S, W, 0, i);
  108. RNDr(S, W, 1, i);
  109. RNDr(S, W, 2, i);
  110. RNDr(S, W, 3, i);
  111. RNDr(S, W, 4, i);
  112. RNDr(S, W, 5, i);
  113. RNDr(S, W, 6, i);
  114. RNDr(S, W, 7, i);
  115. RNDr(S, W, 8, i);
  116. RNDr(S, W, 9, i);
  117. RNDr(S, W, 10, i);
  118. RNDr(S, W, 11, i);
  119. RNDr(S, W, 12, i);
  120. RNDr(S, W, 13, i);
  121. RNDr(S, W, 14, i);
  122. RNDr(S, W, 15, i);
  123. if (i == 64) {
  124. break;
  125. }
  126. MSCH(W, 0, i);
  127. MSCH(W, 1, i);
  128. MSCH(W, 2, i);
  129. MSCH(W, 3, i);
  130. MSCH(W, 4, i);
  131. MSCH(W, 5, i);
  132. MSCH(W, 6, i);
  133. MSCH(W, 7, i);
  134. MSCH(W, 8, i);
  135. MSCH(W, 9, i);
  136. MSCH(W, 10, i);
  137. MSCH(W, 11, i);
  138. MSCH(W, 12, i);
  139. MSCH(W, 13, i);
  140. MSCH(W, 14, i);
  141. MSCH(W, 15, i);
  142. }
  143. for (i = 0; i < 8; i++) {
  144. state[i] += S[i];
  145. }
  146. }
  147. static const uint8_t PAD[128] = {
  148. 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  149. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  150. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  151. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  152. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  153. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  154. };
  155. static void
  156. SHA512_Pad(crypto_hash_sha512_state *state, uint64_t tmp64[80 + 8])
  157. {
  158. unsigned int r;
  159. unsigned int i;
  160. r = (unsigned int) ((state->count[1] >> 3) & 0x7f);
  161. if (r < 112) {
  162. for (i = 0; i < 112 - r; i++) {
  163. state->buf[r + i] = PAD[i];
  164. }
  165. } else {
  166. for (i = 0; i < 128 - r; i++) {
  167. state->buf[r + i] = PAD[i];
  168. }
  169. SHA512_Transform(state->state, state->buf, &tmp64[0], &tmp64[80]);
  170. memset(&state->buf[0], 0, 112);
  171. }
  172. be64enc_vect(&state->buf[112], state->count, 16);
  173. SHA512_Transform(state->state, state->buf, &tmp64[0], &tmp64[80]);
  174. }
  175. int
  176. crypto_hash_sha512_init(crypto_hash_sha512_state *state)
  177. {
  178. static const uint64_t sha512_initial_state[8] = {
  179. 0x6a09e667f3bcc908ULL, 0xbb67ae8584caa73bULL, 0x3c6ef372fe94f82bULL,
  180. 0xa54ff53a5f1d36f1ULL, 0x510e527fade682d1ULL, 0x9b05688c2b3e6c1fULL,
  181. 0x1f83d9abfb41bd6bULL, 0x5be0cd19137e2179ULL
  182. };
  183. state->count[0] = state->count[1] = (uint64_t) 0U;
  184. memcpy(state->state, sha512_initial_state, sizeof sha512_initial_state);
  185. return 0;
  186. }
  187. int
  188. crypto_hash_sha512_update(crypto_hash_sha512_state *state,
  189. const unsigned char *in, unsigned long long inlen)
  190. {
  191. uint64_t tmp64[80 + 8];
  192. uint64_t bitlen[2];
  193. unsigned long long i;
  194. unsigned long long r;
  195. if (inlen <= 0U) {
  196. return 0;
  197. }
  198. r = (unsigned long long) ((state->count[1] >> 3) & 0x7f);
  199. bitlen[1] = ((uint64_t) inlen) << 3;
  200. bitlen[0] = ((uint64_t) inlen) >> 61;
  201. /* LCOV_EXCL_START */
  202. if ((state->count[1] += bitlen[1]) < bitlen[1]) {
  203. state->count[0]++;
  204. }
  205. /* LCOV_EXCL_STOP */
  206. state->count[0] += bitlen[0];
  207. if (inlen < 128 - r) {
  208. for (i = 0; i < inlen; i++) {
  209. state->buf[r + i] = in[i];
  210. }
  211. return 0;
  212. }
  213. for (i = 0; i < 128 - r; i++) {
  214. state->buf[r + i] = in[i];
  215. }
  216. SHA512_Transform(state->state, state->buf, &tmp64[0], &tmp64[80]);
  217. in += 128 - r;
  218. inlen -= 128 - r;
  219. while (inlen >= 128) {
  220. SHA512_Transform(state->state, in, &tmp64[0], &tmp64[80]);
  221. in += 128;
  222. inlen -= 128;
  223. }
  224. inlen &= 127;
  225. for (i = 0; i < inlen; i++) {
  226. state->buf[i] = in[i];
  227. }
  228. sodium_memzero((void *) tmp64, sizeof tmp64);
  229. return 0;
  230. }
  231. int
  232. crypto_hash_sha512_final(crypto_hash_sha512_state *state, unsigned char *out)
  233. {
  234. uint64_t tmp64[80 + 8];
  235. SHA512_Pad(state, tmp64);
  236. be64enc_vect(out, state->state, 64);
  237. sodium_memzero((void *) tmp64, sizeof tmp64);
  238. sodium_memzero((void *) state, sizeof *state);
  239. return 0;
  240. }
  241. int
  242. crypto_hash_sha512(unsigned char *out, const unsigned char *in,
  243. unsigned long long inlen)
  244. {
  245. crypto_hash_sha512_state state;
  246. crypto_hash_sha512_init(&state);
  247. crypto_hash_sha512_update(&state, in, inlen);
  248. crypto_hash_sha512_final(&state, out);
  249. return 0;
  250. }