1
0

sha256.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 2017, Florin Petriuc, <[email protected]>
  9. * Copyright (C) 2018 - 2021, 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.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. #include "curl_hmac.h"
  28. #if defined(USE_OPENSSL)
  29. #include <openssl/opensslv.h>
  30. #if (OPENSSL_VERSION_NUMBER >= 0x0090800fL)
  31. #define USE_OPENSSL_SHA256
  32. #endif
  33. #endif /* USE_OPENSSL */
  34. #ifdef USE_MBEDTLS
  35. #include <mbedtls/version.h>
  36. #if(MBEDTLS_VERSION_NUMBER >= 0x02070000) && \
  37. (MBEDTLS_VERSION_NUMBER < 0x03000000)
  38. #define HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS
  39. #endif
  40. #endif /* USE_MBEDTLS */
  41. /* Please keep the SSL backend-specific #if branches in this order:
  42. *
  43. * 1. USE_OPENSSL
  44. * 2. USE_GNUTLS
  45. * 3. USE_MBEDTLS
  46. * 4. USE_COMMON_CRYPTO
  47. * 5. USE_WIN32_CRYPTO
  48. *
  49. * This ensures that the same SSL branch gets activated throughout this source
  50. * file even if multiple backends are enabled at the same time.
  51. */
  52. #if defined(USE_OPENSSL_SHA256)
  53. /* When OpenSSL is available we use the SHA256-function from OpenSSL */
  54. #include <openssl/sha.h>
  55. #elif defined(USE_GNUTLS)
  56. #include <nettle/sha.h>
  57. #include "curl_memory.h"
  58. /* The last #include file should be: */
  59. #include "memdebug.h"
  60. typedef struct sha256_ctx SHA256_CTX;
  61. static void SHA256_Init(SHA256_CTX *ctx)
  62. {
  63. sha256_init(ctx);
  64. }
  65. static void SHA256_Update(SHA256_CTX *ctx,
  66. const unsigned char *data,
  67. unsigned int length)
  68. {
  69. sha256_update(ctx, length, data);
  70. }
  71. static void SHA256_Final(unsigned char *digest, SHA256_CTX *ctx)
  72. {
  73. sha256_digest(ctx, SHA256_DIGEST_SIZE, digest);
  74. }
  75. #elif defined(USE_MBEDTLS)
  76. #include <mbedtls/sha256.h>
  77. #include "curl_memory.h"
  78. /* The last #include file should be: */
  79. #include "memdebug.h"
  80. typedef mbedtls_sha256_context SHA256_CTX;
  81. static void SHA256_Init(SHA256_CTX *ctx)
  82. {
  83. #if !defined(HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS)
  84. (void) mbedtls_sha256_starts(ctx, 0);
  85. #else
  86. (void) mbedtls_sha256_starts_ret(ctx, 0);
  87. #endif
  88. }
  89. static void SHA256_Update(SHA256_CTX *ctx,
  90. const unsigned char *data,
  91. unsigned int length)
  92. {
  93. #if !defined(HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS)
  94. (void) mbedtls_sha256_update(ctx, data, length);
  95. #else
  96. (void) mbedtls_sha256_update_ret(ctx, data, length);
  97. #endif
  98. }
  99. static void SHA256_Final(unsigned char *digest, SHA256_CTX *ctx)
  100. {
  101. #if !defined(HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS)
  102. (void) mbedtls_sha256_finish(ctx, digest);
  103. #else
  104. (void) mbedtls_sha256_finish_ret(ctx, digest);
  105. #endif
  106. }
  107. #elif (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && \
  108. (__MAC_OS_X_VERSION_MAX_ALLOWED >= 1040)) || \
  109. (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && \
  110. (__IPHONE_OS_VERSION_MAX_ALLOWED >= 20000))
  111. #include <CommonCrypto/CommonDigest.h>
  112. #include "curl_memory.h"
  113. /* The last #include file should be: */
  114. #include "memdebug.h"
  115. typedef CC_SHA256_CTX SHA256_CTX;
  116. static void SHA256_Init(SHA256_CTX *ctx)
  117. {
  118. (void) CC_SHA256_Init(ctx);
  119. }
  120. static void SHA256_Update(SHA256_CTX *ctx,
  121. const unsigned char *data,
  122. unsigned int length)
  123. {
  124. (void) CC_SHA256_Update(ctx, data, length);
  125. }
  126. static void SHA256_Final(unsigned char *digest, SHA256_CTX *ctx)
  127. {
  128. (void) CC_SHA256_Final(digest, ctx);
  129. }
  130. #elif defined(USE_WIN32_CRYPTO)
  131. #include <wincrypt.h>
  132. struct sha256_ctx {
  133. HCRYPTPROV hCryptProv;
  134. HCRYPTHASH hHash;
  135. };
  136. typedef struct sha256_ctx SHA256_CTX;
  137. #if !defined(CALG_SHA_256)
  138. #define CALG_SHA_256 0x0000800c
  139. #endif
  140. static void SHA256_Init(SHA256_CTX *ctx)
  141. {
  142. if(CryptAcquireContext(&ctx->hCryptProv, NULL, NULL, PROV_RSA_AES,
  143. CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
  144. CryptCreateHash(ctx->hCryptProv, CALG_SHA_256, 0, 0, &ctx->hHash);
  145. }
  146. }
  147. static void SHA256_Update(SHA256_CTX *ctx,
  148. const unsigned char *data,
  149. unsigned int length)
  150. {
  151. CryptHashData(ctx->hHash, (unsigned char *) data, length, 0);
  152. }
  153. static void SHA256_Final(unsigned char *digest, SHA256_CTX *ctx)
  154. {
  155. unsigned long length = 0;
  156. CryptGetHashParam(ctx->hHash, HP_HASHVAL, NULL, &length, 0);
  157. if(length == SHA256_DIGEST_LENGTH)
  158. CryptGetHashParam(ctx->hHash, HP_HASHVAL, digest, &length, 0);
  159. if(ctx->hHash)
  160. CryptDestroyHash(ctx->hHash);
  161. if(ctx->hCryptProv)
  162. CryptReleaseContext(ctx->hCryptProv, 0);
  163. }
  164. #else
  165. /* When no other crypto library is available we use this code segment */
  166. /* This is based on SHA256 implementation in LibTomCrypt that was released into
  167. * public domain by Tom St Denis. */
  168. #define WPA_GET_BE32(a) ((((unsigned long)(a)[0]) << 24) | \
  169. (((unsigned long)(a)[1]) << 16) | \
  170. (((unsigned long)(a)[2]) << 8) | \
  171. ((unsigned long)(a)[3]))
  172. #define WPA_PUT_BE32(a, val) \
  173. do { \
  174. (a)[0] = (unsigned char)((((unsigned long) (val)) >> 24) & 0xff); \
  175. (a)[1] = (unsigned char)((((unsigned long) (val)) >> 16) & 0xff); \
  176. (a)[2] = (unsigned char)((((unsigned long) (val)) >> 8) & 0xff); \
  177. (a)[3] = (unsigned char)(((unsigned long) (val)) & 0xff); \
  178. } while(0)
  179. #ifdef HAVE_LONGLONG
  180. #define WPA_PUT_BE64(a, val) \
  181. do { \
  182. (a)[0] = (unsigned char)(((unsigned long long)(val)) >> 56); \
  183. (a)[1] = (unsigned char)(((unsigned long long)(val)) >> 48); \
  184. (a)[2] = (unsigned char)(((unsigned long long)(val)) >> 40); \
  185. (a)[3] = (unsigned char)(((unsigned long long)(val)) >> 32); \
  186. (a)[4] = (unsigned char)(((unsigned long long)(val)) >> 24); \
  187. (a)[5] = (unsigned char)(((unsigned long long)(val)) >> 16); \
  188. (a)[6] = (unsigned char)(((unsigned long long)(val)) >> 8); \
  189. (a)[7] = (unsigned char)(((unsigned long long)(val)) & 0xff); \
  190. } while(0)
  191. #else
  192. #define WPA_PUT_BE64(a, val) \
  193. do { \
  194. (a)[0] = (unsigned char)(((unsigned __int64)(val)) >> 56); \
  195. (a)[1] = (unsigned char)(((unsigned __int64)(val)) >> 48); \
  196. (a)[2] = (unsigned char)(((unsigned __int64)(val)) >> 40); \
  197. (a)[3] = (unsigned char)(((unsigned __int64)(val)) >> 32); \
  198. (a)[4] = (unsigned char)(((unsigned __int64)(val)) >> 24); \
  199. (a)[5] = (unsigned char)(((unsigned __int64)(val)) >> 16); \
  200. (a)[6] = (unsigned char)(((unsigned __int64)(val)) >> 8); \
  201. (a)[7] = (unsigned char)(((unsigned __int64)(val)) & 0xff); \
  202. } while(0)
  203. #endif
  204. struct sha256_state {
  205. #ifdef HAVE_LONGLONG
  206. unsigned long long length;
  207. #else
  208. unsigned __int64 length;
  209. #endif
  210. unsigned long state[8], curlen;
  211. unsigned char buf[64];
  212. };
  213. typedef struct sha256_state SHA256_CTX;
  214. /* The K array */
  215. static const unsigned long K[64] = {
  216. 0x428a2f98UL, 0x71374491UL, 0xb5c0fbcfUL, 0xe9b5dba5UL, 0x3956c25bUL,
  217. 0x59f111f1UL, 0x923f82a4UL, 0xab1c5ed5UL, 0xd807aa98UL, 0x12835b01UL,
  218. 0x243185beUL, 0x550c7dc3UL, 0x72be5d74UL, 0x80deb1feUL, 0x9bdc06a7UL,
  219. 0xc19bf174UL, 0xe49b69c1UL, 0xefbe4786UL, 0x0fc19dc6UL, 0x240ca1ccUL,
  220. 0x2de92c6fUL, 0x4a7484aaUL, 0x5cb0a9dcUL, 0x76f988daUL, 0x983e5152UL,
  221. 0xa831c66dUL, 0xb00327c8UL, 0xbf597fc7UL, 0xc6e00bf3UL, 0xd5a79147UL,
  222. 0x06ca6351UL, 0x14292967UL, 0x27b70a85UL, 0x2e1b2138UL, 0x4d2c6dfcUL,
  223. 0x53380d13UL, 0x650a7354UL, 0x766a0abbUL, 0x81c2c92eUL, 0x92722c85UL,
  224. 0xa2bfe8a1UL, 0xa81a664bUL, 0xc24b8b70UL, 0xc76c51a3UL, 0xd192e819UL,
  225. 0xd6990624UL, 0xf40e3585UL, 0x106aa070UL, 0x19a4c116UL, 0x1e376c08UL,
  226. 0x2748774cUL, 0x34b0bcb5UL, 0x391c0cb3UL, 0x4ed8aa4aUL, 0x5b9cca4fUL,
  227. 0x682e6ff3UL, 0x748f82eeUL, 0x78a5636fUL, 0x84c87814UL, 0x8cc70208UL,
  228. 0x90befffaUL, 0xa4506cebUL, 0xbef9a3f7UL, 0xc67178f2UL
  229. };
  230. /* Various logical functions */
  231. #define RORc(x, y) \
  232. (((((unsigned long)(x) & 0xFFFFFFFFUL) >> (unsigned long)((y) & 31)) | \
  233. ((unsigned long)(x) << (unsigned long)(32 - ((y) & 31)))) & 0xFFFFFFFFUL)
  234. #define Ch(x,y,z) (z ^ (x & (y ^ z)))
  235. #define Maj(x,y,z) (((x | y) & z) | (x & y))
  236. #define S(x, n) RORc((x), (n))
  237. #define R(x, n) (((x)&0xFFFFFFFFUL)>>(n))
  238. #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22))
  239. #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25))
  240. #define Gamma0(x) (S(x, 7) ^ S(x, 18) ^ R(x, 3))
  241. #define Gamma1(x) (S(x, 17) ^ S(x, 19) ^ R(x, 10))
  242. /* Compress 512-bits */
  243. static int sha256_compress(struct sha256_state *md,
  244. unsigned char *buf)
  245. {
  246. unsigned long S[8], W[64];
  247. int i;
  248. /* Copy state into S */
  249. for(i = 0; i < 8; i++) {
  250. S[i] = md->state[i];
  251. }
  252. /* copy the state into 512-bits into W[0..15] */
  253. for(i = 0; i < 16; i++)
  254. W[i] = WPA_GET_BE32(buf + (4 * i));
  255. /* fill W[16..63] */
  256. for(i = 16; i < 64; i++) {
  257. W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) +
  258. W[i - 16];
  259. }
  260. /* Compress */
  261. #define RND(a,b,c,d,e,f,g,h,i) \
  262. do { \
  263. unsigned long t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
  264. unsigned long t1 = Sigma0(a) + Maj(a, b, c); \
  265. d += t0; \
  266. h = t0 + t1; \
  267. } while(0)
  268. for(i = 0; i < 64; ++i) {
  269. unsigned long t;
  270. RND(S[0], S[1], S[2], S[3], S[4], S[5], S[6], S[7], i);
  271. t = S[7]; S[7] = S[6]; S[6] = S[5]; S[5] = S[4];
  272. S[4] = S[3]; S[3] = S[2]; S[2] = S[1]; S[1] = S[0]; S[0] = t;
  273. }
  274. /* Feedback */
  275. for(i = 0; i < 8; i++) {
  276. md->state[i] = md->state[i] + S[i];
  277. }
  278. return 0;
  279. }
  280. /* Initialize the hash state */
  281. static void SHA256_Init(struct sha256_state *md)
  282. {
  283. md->curlen = 0;
  284. md->length = 0;
  285. md->state[0] = 0x6A09E667UL;
  286. md->state[1] = 0xBB67AE85UL;
  287. md->state[2] = 0x3C6EF372UL;
  288. md->state[3] = 0xA54FF53AUL;
  289. md->state[4] = 0x510E527FUL;
  290. md->state[5] = 0x9B05688CUL;
  291. md->state[6] = 0x1F83D9ABUL;
  292. md->state[7] = 0x5BE0CD19UL;
  293. }
  294. /*
  295. Process a block of memory though the hash
  296. @param md The hash state
  297. @param in The data to hash
  298. @param inlen The length of the data (octets)
  299. @return CRYPT_OK if successful
  300. */
  301. static int SHA256_Update(struct sha256_state *md,
  302. const unsigned char *in,
  303. unsigned long inlen)
  304. {
  305. unsigned long n;
  306. #define block_size 64
  307. if(md->curlen > sizeof(md->buf))
  308. return -1;
  309. while(inlen > 0) {
  310. if(md->curlen == 0 && inlen >= block_size) {
  311. if(sha256_compress(md, (unsigned char *)in) < 0)
  312. return -1;
  313. md->length += block_size * 8;
  314. in += block_size;
  315. inlen -= block_size;
  316. }
  317. else {
  318. n = CURLMIN(inlen, (block_size - md->curlen));
  319. memcpy(md->buf + md->curlen, in, n);
  320. md->curlen += n;
  321. in += n;
  322. inlen -= n;
  323. if(md->curlen == block_size) {
  324. if(sha256_compress(md, md->buf) < 0)
  325. return -1;
  326. md->length += 8 * block_size;
  327. md->curlen = 0;
  328. }
  329. }
  330. }
  331. return 0;
  332. }
  333. /*
  334. Terminate the hash to get the digest
  335. @param md The hash state
  336. @param out [out] The destination of the hash (32 bytes)
  337. @return CRYPT_OK if successful
  338. */
  339. static int SHA256_Final(unsigned char *out,
  340. struct sha256_state *md)
  341. {
  342. int i;
  343. if(md->curlen >= sizeof(md->buf))
  344. return -1;
  345. /* Increase the length of the message */
  346. md->length += md->curlen * 8;
  347. /* Append the '1' bit */
  348. md->buf[md->curlen++] = (unsigned char)0x80;
  349. /* If the length is currently above 56 bytes we append zeros
  350. * then compress. Then we can fall back to padding zeros and length
  351. * encoding like normal.
  352. */
  353. if(md->curlen > 56) {
  354. while(md->curlen < 64) {
  355. md->buf[md->curlen++] = (unsigned char)0;
  356. }
  357. sha256_compress(md, md->buf);
  358. md->curlen = 0;
  359. }
  360. /* Pad up to 56 bytes of zeroes */
  361. while(md->curlen < 56) {
  362. md->buf[md->curlen++] = (unsigned char)0;
  363. }
  364. /* Store length */
  365. WPA_PUT_BE64(md->buf + 56, md->length);
  366. sha256_compress(md, md->buf);
  367. /* Copy output */
  368. for(i = 0; i < 8; i++)
  369. WPA_PUT_BE32(out + (4 * i), md->state[i]);
  370. return 0;
  371. }
  372. #endif /* CRYPTO LIBS */
  373. /*
  374. * Curl_sha256it()
  375. *
  376. * Generates a SHA256 hash for the given input data.
  377. *
  378. * Parameters:
  379. *
  380. * output [in/out] - The output buffer.
  381. * input [in] - The input data.
  382. * length [in] - The input length.
  383. */
  384. void Curl_sha256it(unsigned char *output, const unsigned char *input,
  385. const size_t length)
  386. {
  387. SHA256_CTX ctx;
  388. SHA256_Init(&ctx);
  389. SHA256_Update(&ctx, input, curlx_uztoui(length));
  390. SHA256_Final(output, &ctx);
  391. }
  392. const struct HMAC_params Curl_HMAC_SHA256[] = {
  393. {
  394. /* Hash initialization function. */
  395. CURLX_FUNCTION_CAST(HMAC_hinit_func, SHA256_Init),
  396. /* Hash update function. */
  397. CURLX_FUNCTION_CAST(HMAC_hupdate_func, SHA256_Update),
  398. /* Hash computation end function. */
  399. CURLX_FUNCTION_CAST(HMAC_hfinal_func, SHA256_Final),
  400. /* Size of hash context structure. */
  401. sizeof(SHA256_CTX),
  402. /* Maximum key length. */
  403. 64,
  404. /* Result size. */
  405. 32
  406. }
  407. };
  408. #endif /* CURL_DISABLE_CRYPTO_AUTH */