summaryrefslogtreecommitdiff
path: root/lib/curl_sha256.h
diff options
context:
space:
mode:
authorHayden Roche <haydenroche5@gmail.com>2021-10-01 16:06:55 -0700
committerDaniel Stenberg <daniel@haxx.se>2021-10-02 13:55:31 +0200
commite12dc2dd977c1e5f8d05e681d8d31f4fc124f6f9 (patch)
tree13fd124a333b03208069065f1e15625cb162bb46 /lib/curl_sha256.h
parent8bb5f4ddf3c7d023196ad70d6af265424edebfee (diff)
downloadcurl-e12dc2dd977c1e5f8d05e681d8d31f4fc124f6f9.tar.gz
wolfssl: use for SHA256, MD4, MD5, and setting DES odd parity
Prior to this commit, OpenSSL could be used for all these functions, but not wolfSSL. This commit makes it so wolfSSL will be used if USE_WOLFSSL is defined. Closes #7806
Diffstat (limited to 'lib/curl_sha256.h')
-rw-r--r--lib/curl_sha256.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/curl_sha256.h b/lib/curl_sha256.h
index b4579d769..b14c475ef 100644
--- a/lib/curl_sha256.h
+++ b/lib/curl_sha256.h
@@ -8,7 +8,7 @@
* \___|\___/|_| \_\_____|
*
* Copyright (C) 2017, Florin Petriuc, <petriuc.florin@gmail.com>
- * Copyright (C) 2018 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2018 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -28,7 +28,14 @@
extern const struct HMAC_params Curl_HMAC_SHA256[1];
+#ifdef USE_WOLFSSL
+/* SHA256_DIGEST_LENGTH is an enum value in wolfSSL. Need to import it from
+ * sha.h*/
+#include <wolfssl/options.h>
+#include <openssl/sha.h>
+#else
#define SHA256_DIGEST_LENGTH 32
+#endif
void Curl_sha256it(unsigned char *outbuffer, const unsigned char *input,
const size_t len);