sha256.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 2017, Florin Petriuc, <[email protected]>
  9. * Copyright (C) 2018 - 2020, Daniel Stenberg, <[email protected]>, et al.
  10. *
  11. * This software is licensed as described in the file COPYING, which
  12. * you should have received as part of this distribution. The terms
  13. * are also available at https://curl.haxx.se/docs/copyright.html.
  14. *
  15. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  16. * copies of the Software, and permit persons to whom the Software is
  17. * furnished to do so, under the terms of the COPYING file.
  18. *
  19. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  20. * KIND, either express or implied.
  21. *
  22. ***************************************************************************/
  23. #include "curl_setup.h"
  24. #ifndef CURL_DISABLE_CRYPTO_AUTH
  25. #include "warnless.h"
  26. #include "curl_sha256.h"
  27. #if defined(USE_OPENSSL)
  28. #include <openssl/opensslv.h>
  29. #if (OPENSSL_VERSION_NUMBER >= 0x0090800fL)
  30. #define USE_OPENSSL_SHA256
  31. #endif
  32. #endif /* USE_OPENSSL */
  33. #ifdef USE_MBEDTLS
  34. #include <mbedtls/version.h>
  35. #if(MBEDTLS_VERSION_NUMBER >= 0x02070000)
  36. #define HAS_RESULT_CODE_BASED_FUNCTIONS
  37. #endif
  38. #endif /* USE_MBEDTLS */
  39. /* Please keep the SSL backend-specific #if branches in this order:
  40. *
  41. * 1. USE_OPENSSL
  42. * 2. USE_GNUTLS_NETTLE
  43. * 3. USE_GNUTLS
  44. * 4. USE_MBEDTLS
  45. * 5. USE_COMMON_CRYPTO
  46. * 6. USE_WIN32_CRYPTO
  47. *
  48. * This ensures that the same SSL branch gets activated throughout this source
  49. * file even if multiple backends are enabled at the same time.
  50. */
  51. #if defined(USE_OPENSSL_SHA256)
  52. /* When OpenSSL is available we use the SHA256-function from OpenSSL */
  53. #include <openssl/sha.h>
  54. #elif defined(USE_GNUTLS_NETTLE)
  55. #include <nettle/sha.h>
  56. #include "curl_memory.h"
  57. /* The last #include file should be: */
  58. #include "memdebug.h"
  59. typedef struct sha256_ctx SHA256_CTX;
  60. static void SHA256_Init(SHA256_CTX *ctx)
  61. {
  62. sha256_init(ctx);
  63. }
  64. static void SHA256_Update(SHA256_CTX *ctx,
  65. const unsigned char *data,
  66. unsigned int length)
  67. {
  68. sha256_update(ctx, length, data);
  69. }
  70. static void SHA256_Final(unsigned char *digest, SHA256_CTX *ctx)
  71. {
  72. sha256_digest(ctx, SHA256_DIGEST_SIZE, digest);
  73. }
  74. #elif defined(USE_GNUTLS)
  75. #include <gcrypt.h>
  76. #include "curl_memory.h"
  77. /* The last #include file should be: */
  78. #include "memdebug.h"
  79. typedef gcry_md_hd_t SHA256_CTX;
  80. static void SHA256_Init(SHA256_CTX *ctx)
  81. {
  82. gcry_md_open(ctx, GCRY_MD_SHA256, 0);
  83. }
  84. static void SHA256_Update(SHA256_CTX *ctx,
  85. const unsigned char *data,
  86. unsigned int length)
  87. {
  88. gcry_md_write(*ctx, data, length);
  89. }
  90. static void SHA256_Final(unsigned char *digest, SHA256_CTX *ctx)
  91. {
  92. memcpy(digest, gcry_md_read(*ctx, 0), SHA256_DIGEST_LENGTH);
  93. gcry_md_close(*ctx);
  94. }
  95. #elif defined(USE_MBEDTLS)
  96. #include <mbedtls/sha256.h>
  97. #include "curl_memory.h"
  98. /* The last #include file should be: */
  99. #include "memdebug.h"
  100. typedef mbedtls_sha256_context SHA256_CTX;
  101. static void SHA256_Init(SHA256_CTX *ctx)
  102. {
  103. #if !defined(HAS_RESULT_CODE_BASED_FUNCTIONS)
  104. mbedtls_sha256_starts(ctx, 0);
  105. #else
  106. (void) mbedtls_sha256_starts_ret(ctx, 0);
  107. #endif
  108. }
  109. static void SHA256_Update(SHA256_CTX *ctx,
  110. const unsigned char *data,
  111. unsigned int length)
  112. {
  113. #if !defined(HAS_RESULT_CODE_BASED_FUNCTIONS)
  114. mbedtls_sha256_update(ctx, data, length);
  115. #else
  116. (void) mbedtls_sha256_update_ret(ctx, data, length);
  117. #endif
  118. }
  119. static void SHA256_Final(unsigned char *digest, SHA256_CTX *ctx)
  120. {
  121. #if !defined(HAS_RESULT_CODE_BASED_FUNCTIONS)
  122. mbedtls_sha256_finish(ctx, digest);
  123. #else
  124. (void) mbedtls_sha256_finish_ret(ctx, digest);
  125. #endif
  126. }
  127. #else
  128. /* When no other crypto library is available we use this code segment */
  129. /* This is based on SHA256 implementation in LibTomCrypt that was released into
  130. * public domain by Tom St Denis. */
  131. #define WPA_GET_BE32(a) ((((unsigned long)(a)[0]) << 24) | \
  132. (((unsigned long)(a)[1]) << 16) | \
  133. (((unsigned long)(a)[2]) << 8) | \
  134. ((unsigned long)(a)[3]))
  135. #define WPA_PUT_BE32(a, val) \
  136. do { \
  137. (a)[0] = (unsigned char)((((unsigned long) (val)) >> 24) & 0xff); \
  138. (a)[1] = (unsigned char)((((unsigned long) (val)) >> 16) & 0xff); \
  139. (a)[2] = (unsigned char)((((unsigned long) (val)) >> 8) & 0xff); \
  140. (a)[3] = (unsigned char)(((unsigned long) (val)) & 0xff); \
  141. } while(0)
  142. #ifdef HAVE_LONGLONG
  143. #define WPA_PUT_BE64(a, val) \
  144. do { \
  145. (a)[0] = (unsigned char)(((unsigned long long)(val)) >> 56); \
  146. (a)[1] = (unsigned char)(((unsigned long long)(val)) >> 48); \
  147. (a)[2] = (unsigned char)(((unsigned long long)(val)) >> 40); \
  148. (a)[3] = (unsigned char)(((unsigned long long)(val)) >> 32); \
  149. (a)[4] = (unsigned char)(((unsigned long long)(val)) >> 24); \
  150. (a)[5] = (unsigned char)(((unsigned long long)(val)) >> 16); \
  151. (a)[6] = (unsigned char)(((unsigned long long)(val)) >> 8); \
  152. (a)[7] = (unsigned char)(((unsigned long long)(val)) & 0xff); \
  153. } while(0)
  154. #else
  155. #define WPA_PUT_BE64(a, val) \
  156. do { \
  157. (a)[0] = (unsigned char)(((unsigned __int64)(val)) >> 56); \
  158. (a)[1] = (unsigned char)(((unsigned __int64)(val)) >> 48); \
  159. (a)[2] = (unsigned char)(((unsigned __int64)(val)) >> 40); \
  160. (a)[3] = (unsigned char)(((unsigned __int64)(val)) >> 32); \
  161. (a)[4] = (unsigned char)(((unsigned __int64)(val)) >> 24); \
  162. (a)[5] = (unsigned char)(((unsigned __int64)(val)) >> 16); \
  163. (a)[6] = (unsigned char)(((unsigned __int64)(val)) >> 8); \
  164. (a)[7] = (unsigned char)(((unsigned __int64)(val)) & 0xff); \
  165. } while(0)
  166. #endif
  167. typedef struct sha256_state {
  168. #ifdef HAVE_LONGLONG
  169. unsigned long long length;
  170. #else
  171. unsigned __int64 length;
  172. #endif
  173. unsigned long state[8], curlen;
  174. unsigned char buf[64];
  175. } SHA256_CTX;
  176. /* The K array */
  177. static const unsigned long K[64] = {
  178. 0x428a2f98UL, 0x71374491UL, 0xb5c0fbcfUL, 0xe9b5dba5UL, 0x3956c25bUL,
  179. 0x59f111f1UL, 0x923f82a4UL, 0xab1c5ed5UL, 0xd807aa98UL, 0x12835b01UL,
  180. 0x243185beUL, 0x550c7dc3UL, 0x72be5d74UL, 0x80deb1feUL, 0x9bdc06a7UL,
  181. 0xc19bf174UL, 0xe49b69c1UL, 0xefbe4786UL, 0x0fc19dc6UL, 0x240ca1ccUL,
  182. 0x2de92c6fUL, 0x4a7484aaUL, 0x5cb0a9dcUL, 0x76f988daUL, 0x983e5152UL,
  183. 0xa831c66dUL, 0xb00327c8UL, 0xbf597fc7UL, 0xc6e00bf3UL, 0xd5a79147UL,
  184. 0x06ca6351UL, 0x14292967UL, 0x27b70a85UL, 0x2e1b2138UL, 0x4d2c6dfcUL,
  185. 0x53380d13UL, 0x650a7354UL, 0x766a0abbUL, 0x81c2c92eUL, 0x92722c85UL,
  186. 0xa2bfe8a1UL, 0xa81a664bUL, 0xc24b8b70UL, 0xc76c51a3UL, 0xd192e819UL,
  187. 0xd6990624UL, 0xf40e3585UL, 0x106aa070UL, 0x19a4c116UL, 0x1e376c08UL,
  188. 0x2748774cUL, 0x34b0bcb5UL, 0x391c0cb3UL, 0x4ed8aa4aUL, 0x5b9cca4fUL,
  189. 0x682e6ff3UL, 0x748f82eeUL, 0x78a5636fUL, 0x84c87814UL, 0x8cc70208UL,
  190. 0x90befffaUL, 0xa4506cebUL, 0xbef9a3f7UL, 0xc67178f2UL
  191. };
  192. /* Various logical functions */
  193. #define RORc(x, y) \
  194. (((((unsigned long)(x) & 0xFFFFFFFFUL) >> (unsigned long)((y) & 31)) | \
  195. ((unsigned long)(x) << (unsigned long)(32 - ((y) & 31)))) & 0xFFFFFFFFUL)
  196. #define Ch(x,y,z) (z ^ (x & (y ^ z)))
  197. #define Maj(x,y,z) (((x | y) & z) | (x & y))
  198. #define S(x, n) RORc((x), (n))
  199. #define R(x, n) (((x)&0xFFFFFFFFUL)>>(n))
  200. #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22))
  201. #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25))
  202. #define Gamma0(x) (S(x, 7) ^ S(x, 18) ^ R(x, 3))
  203. #define Gamma1(x) (S(x, 17) ^ S(x, 19) ^ R(x, 10))
  204. /* Compress 512-bits */
  205. static int sha256_compress(struct sha256_state *md,
  206. unsigned char *buf)
  207. {
  208. unsigned long S[8], W[64];
  209. int i;
  210. /* Copy state into S */
  211. for(i = 0; i < 8; i++) {
  212. S[i] = md->state[i];
  213. }
  214. /* copy the state into 512-bits into W[0..15] */
  215. for(i = 0; i < 16; i++)
  216. W[i] = WPA_GET_BE32(buf + (4 * i));
  217. /* fill W[16..63] */
  218. for(i = 16; i < 64; i++) {
  219. W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) +
  220. W[i - 16];
  221. }
  222. /* Compress */
  223. #define RND(a,b,c,d,e,f,g,h,i) \
  224. unsigned long t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
  225. unsigned long t1 = Sigma0(a) + Maj(a, b, c); \
  226. d += t0; \
  227. h = t0 + t1;
  228. for(i = 0; i < 64; ++i) {
  229. unsigned long t;
  230. RND(S[0], S[1], S[2], S[3], S[4], S[5], S[6], S[7], i);
  231. t = S[7]; S[7] = S[6]; S[6] = S[5]; S[5] = S[4];
  232. S[4] = S[3]; S[3] = S[2]; S[2] = S[1]; S[1] = S[0]; S[0] = t;
  233. }
  234. /* Feedback */
  235. for(i = 0; i < 8; i++) {
  236. md->state[i] = md->state[i] + S[i];
  237. }
  238. return 0;
  239. }
  240. /* Initialize the hash state */
  241. static void SHA256_Init(struct sha256_state *md)
  242. {
  243. md->curlen = 0;
  244. md->length = 0;
  245. md->state[0] = 0x6A09E667UL;
  246. md->state[1] = 0xBB67AE85UL;
  247. md->state[2] = 0x3C6EF372UL;
  248. md->state[3] = 0xA54FF53AUL;
  249. md->state[4] = 0x510E527FUL;
  250. md->state[5] = 0x9B05688CUL;
  251. md->state[6] = 0x1F83D9ABUL;
  252. md->state[7] = 0x5BE0CD19UL;
  253. }
  254. /*
  255. Process a block of memory though the hash
  256. @param md The hash state
  257. @param in The data to hash
  258. @param inlen The length of the data (octets)
  259. @return CRYPT_OK if successful
  260. */
  261. static int SHA256_Update(struct sha256_state *md,
  262. const unsigned char *in,
  263. unsigned long inlen)
  264. {
  265. unsigned long n;
  266. #define block_size 64
  267. if(md->curlen > sizeof(md->buf))
  268. return -1;
  269. while(inlen > 0) {
  270. if(md->curlen == 0 && inlen >= block_size) {
  271. if(sha256_compress(md, (unsigned char *)in) < 0)
  272. return -1;
  273. md->length += block_size * 8;
  274. in += block_size;
  275. inlen -= block_size;
  276. }
  277. else {
  278. n = CURLMIN(inlen, (block_size - md->curlen));
  279. memcpy(md->buf + md->curlen, in, n);
  280. md->curlen += n;
  281. in += n;
  282. inlen -= n;
  283. if(md->curlen == block_size) {
  284. if(sha256_compress(md, md->buf) < 0)
  285. return -1;
  286. md->length += 8 * block_size;
  287. md->curlen = 0;
  288. }
  289. }
  290. }
  291. return 0;
  292. }
  293. /*
  294. Terminate the hash to get the digest
  295. @param md The hash state
  296. @param out [out] The destination of the hash (32 bytes)
  297. @return CRYPT_OK if successful
  298. */
  299. static int SHA256_Final(unsigned char *out,
  300. struct sha256_state *md)
  301. {
  302. int i;
  303. if(md->curlen >= sizeof(md->buf))
  304. return -1;
  305. /* Increase the length of the message */
  306. md->length += md->curlen * 8;
  307. /* Append the '1' bit */
  308. md->buf[md->curlen++] = (unsigned char)0x80;
  309. /* If the length is currently above 56 bytes we append zeros
  310. * then compress. Then we can fall back to padding zeros and length
  311. * encoding like normal.
  312. */
  313. if(md->curlen > 56) {
  314. while(md->curlen < 64) {
  315. md->buf[md->curlen++] = (unsigned char)0;
  316. }
  317. sha256_compress(md, md->buf);
  318. md->curlen = 0;
  319. }
  320. /* Pad up to 56 bytes of zeroes */
  321. while(md->curlen < 56) {
  322. md->buf[md->curlen++] = (unsigned char)0;
  323. }
  324. /* Store length */
  325. WPA_PUT_BE64(md->buf + 56, md->length);
  326. sha256_compress(md, md->buf);
  327. /* Copy output */
  328. for(i = 0; i < 8; i++)
  329. WPA_PUT_BE32(out + (4 * i), md->state[i]);
  330. return 0;
  331. }
  332. #endif /* CRYPTO LIBS */
  333. /*
  334. * Curl_sha256it()
  335. *
  336. * Generates a SHA256 hash for the given input data.
  337. *
  338. * Parameters:
  339. *
  340. * output [in/out] - The output buffer.
  341. * input [in] - The input data.
  342. * length [in] - The input length.
  343. */
  344. void Curl_sha256it(unsigned char *output, const unsigned char *input,
  345. const size_t length)
  346. {
  347. SHA256_CTX ctx;
  348. SHA256_Init(&ctx);
  349. SHA256_Update(&ctx, input, curlx_uztoui(length));
  350. SHA256_Final(output, &ctx);
  351. }
  352. #endif /* CURL_DISABLE_CRYPTO_AUTH */