sha256.c 16 KB

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