From: Steve Holme Date: Thu, 20 Feb 2020 01:41:01 +0000 (+0000) Subject: sha256: Added SecureTransport implementation X-Git-Tag: curl-7_69_1~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=92d63a10aa12b7c76f54fbdd8a362ddb3a64ae52;p=thirdparty%2Fcurl.git sha256: Added SecureTransport implementation --- diff --git a/lib/sha256.c b/lib/sha256.c index 97214182be..a14f42aa30 100644 --- a/lib/sha256.c +++ b/lib/sha256.c @@ -161,6 +161,37 @@ static void SHA256_Final(unsigned char *digest, SHA256_CTX *ctx) #endif } +#elif (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && \ + (__MAC_OS_X_VERSION_MAX_ALLOWED >= 1040)) || \ + (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && \ + (__IPHONE_OS_VERSION_MAX_ALLOWED >= 20000)) + +#include + +#include "curl_memory.h" + +/* The last #include file should be: */ +#include "memdebug.h" + +typedef CC_SHA256_CTX SHA256_CTX; + +static void SHA256_Init(SHA256_CTX *ctx) +{ + (void) CC_SHA256_Init(ctx); +} + +static void SHA256_Update(SHA256_CTX *ctx, + const unsigned char *data, + unsigned int length) +{ + (void) CC_SHA256_Update(ctx, data, length); +} + +static void SHA256_Final(unsigned char *digest, SHA256_CTX *ctx) +{ + (void) CC_SHA256_Final(digest, ctx); +} + #else /* When no other crypto library is available we use this code segment */