sha256.c 15 KB

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