hash_sha256_cp.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  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_sha256.h"
  33. #include "private/common.h"
  34. #include "utils.h"
  35. static void
  36. be32enc_vect(unsigned char *dst, const uint32_t *src, size_t len)
  37. {
  38. size_t i;
  39. for (i = 0; i < len / 4; i++) {
  40. STORE32_BE(dst + i * 4, src[i]);
  41. }
  42. }
  43. static void
  44. be32dec_vect(uint32_t *dst, const unsigned char *src, size_t len)
  45. {
  46. size_t i;
  47. for (i = 0; i < len / 4; i++) {
  48. dst[i] = LOAD32_BE(src + i * 4);
  49. }
  50. }
  51. static const uint32_t Krnd[64] = {
  52. 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1,
  53. 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  54. 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786,
  55. 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  56. 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147,
  57. 0x06ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  58. 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, 0xa2bfe8a1, 0xa81a664b,
  59. 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  60. 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a,
  61. 0x5b9cca4f, 0x682e6ff3, 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  62. 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
  63. };
  64. #define Ch(x, y, z) ((x & (y ^ z)) ^ z)
  65. #define Maj(x, y, z) ((x & (y | z)) | (y & z))
  66. #define SHR(x, n) (x >> n)
  67. #define ROTR(x, n) ROTR32(x, n)
  68. #define S0(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22))
  69. #define S1(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25))
  70. #define s0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3))
  71. #define s1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10))
  72. #define RND(a, b, c, d, e, f, g, h, k) \
  73. h += S1(e) + Ch(e, f, g) + k; \
  74. d += h; \
  75. h += S0(a) + Maj(a, b, c);
  76. #define RNDr(S, W, i, ii) \
  77. RND(S[(64 - i) % 8], S[(65 - i) % 8], S[(66 - i) % 8], S[(67 - i) % 8], \
  78. S[(68 - i) % 8], S[(69 - i) % 8], S[(70 - i) % 8], S[(71 - i) % 8], \
  79. W[i + ii] + Krnd[i + ii])
  80. #define MSCH(W, ii, i) \
  81. W[i + ii + 16] = \
  82. s1(W[i + ii + 14]) + W[i + ii + 9] + s0(W[i + ii + 1]) + W[i + ii]
  83. static void
  84. SHA256_Transform(uint32_t state[8], const uint8_t block[64], uint32_t W[64],
  85. uint32_t S[8])
  86. {
  87. int i;
  88. be32dec_vect(W, block, 64);
  89. memcpy(S, state, 32);
  90. for (i = 0; i < 64; i += 16) {
  91. RNDr(S, W, 0, i);
  92. RNDr(S, W, 1, i);
  93. RNDr(S, W, 2, i);
  94. RNDr(S, W, 3, i);
  95. RNDr(S, W, 4, i);
  96. RNDr(S, W, 5, i);
  97. RNDr(S, W, 6, i);
  98. RNDr(S, W, 7, i);
  99. RNDr(S, W, 8, i);
  100. RNDr(S, W, 9, i);
  101. RNDr(S, W, 10, i);
  102. RNDr(S, W, 11, i);
  103. RNDr(S, W, 12, i);
  104. RNDr(S, W, 13, i);
  105. RNDr(S, W, 14, i);
  106. RNDr(S, W, 15, i);
  107. if (i == 48) {
  108. break;
  109. }
  110. MSCH(W, 0, i);
  111. MSCH(W, 1, i);
  112. MSCH(W, 2, i);
  113. MSCH(W, 3, i);
  114. MSCH(W, 4, i);
  115. MSCH(W, 5, i);
  116. MSCH(W, 6, i);
  117. MSCH(W, 7, i);
  118. MSCH(W, 8, i);
  119. MSCH(W, 9, i);
  120. MSCH(W, 10, i);
  121. MSCH(W, 11, i);
  122. MSCH(W, 12, i);
  123. MSCH(W, 13, i);
  124. MSCH(W, 14, i);
  125. MSCH(W, 15, i);
  126. }
  127. for (i = 0; i < 8; i++) {
  128. state[i] += S[i];
  129. }
  130. }
  131. static const uint8_t PAD[64] = { 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  132. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  133. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  134. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  135. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
  136. static void
  137. SHA256_Pad(crypto_hash_sha256_state *state, uint32_t tmp32[64 + 8])
  138. {
  139. unsigned int r;
  140. unsigned int i;
  141. r = (unsigned int) ((state->count >> 3) & 0x3f);
  142. if (r < 56) {
  143. for (i = 0; i < 56 - r; i++) {
  144. state->buf[r + i] = PAD[i];
  145. }
  146. } else {
  147. for (i = 0; i < 64 - r; i++) {
  148. state->buf[r + i] = PAD[i];
  149. }
  150. SHA256_Transform(state->state, state->buf, &tmp32[0], &tmp32[64]);
  151. memset(&state->buf[0], 0, 56);
  152. }
  153. STORE64_BE(&state->buf[56], state->count);
  154. SHA256_Transform(state->state, state->buf, &tmp32[0], &tmp32[64]);
  155. }
  156. int
  157. crypto_hash_sha256_init(crypto_hash_sha256_state *state)
  158. {
  159. static const uint32_t sha256_initial_state[8] = { 0x6a09e667, 0xbb67ae85,
  160. 0x3c6ef372, 0xa54ff53a,
  161. 0x510e527f, 0x9b05688c,
  162. 0x1f83d9ab, 0x5be0cd19 };
  163. state->count = (uint64_t) 0U;
  164. memcpy(state->state, sha256_initial_state, sizeof sha256_initial_state);
  165. return 0;
  166. }
  167. int
  168. crypto_hash_sha256_update(crypto_hash_sha256_state *state,
  169. const unsigned char *in, unsigned long long inlen)
  170. {
  171. uint32_t tmp32[64 + 8];
  172. unsigned long long i;
  173. unsigned long long r;
  174. if (inlen <= 0U) {
  175. return 0;
  176. }
  177. r = (unsigned long long) ((state->count >> 3) & 0x3f);
  178. state->count += ((uint64_t) inlen) << 3;
  179. if (inlen < 64 - r) {
  180. for (i = 0; i < inlen; i++) {
  181. state->buf[r + i] = in[i];
  182. }
  183. return 0;
  184. }
  185. for (i = 0; i < 64 - r; i++) {
  186. state->buf[r + i] = in[i];
  187. }
  188. SHA256_Transform(state->state, state->buf, &tmp32[0], &tmp32[64]);
  189. in += 64 - r;
  190. inlen -= 64 - r;
  191. while (inlen >= 64) {
  192. SHA256_Transform(state->state, in, &tmp32[0], &tmp32[64]);
  193. in += 64;
  194. inlen -= 64;
  195. }
  196. inlen &= 63;
  197. for (i = 0; i < inlen; i++) {
  198. state->buf[i] = in[i];
  199. }
  200. sodium_memzero((void *) tmp32, sizeof tmp32);
  201. return 0;
  202. }
  203. int
  204. crypto_hash_sha256_final(crypto_hash_sha256_state *state, unsigned char *out)
  205. {
  206. uint32_t tmp32[64 + 8];
  207. SHA256_Pad(state, tmp32);
  208. be32enc_vect(out, state->state, 32);
  209. sodium_memzero((void *) tmp32, sizeof tmp32);
  210. sodium_memzero((void *) state, sizeof *state);
  211. return 0;
  212. }
  213. int
  214. crypto_hash_sha256(unsigned char *out, const unsigned char *in,
  215. unsigned long long inlen)
  216. {
  217. crypto_hash_sha256_state state;
  218. crypto_hash_sha256_init(&state);
  219. crypto_hash_sha256_update(&state, in, inlen);
  220. crypto_hash_sha256_final(&state, out);
  221. return 0;
  222. }