mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-01 03:34:39 +02:00
fix references to misnamed HAVE_SHA224, HAVE_SHA384, HAVE_SHA512 (correct names have WOLFSSL_ prefixes).
This commit is contained in:
@@ -15108,7 +15108,7 @@ static WC_INLINE const char* wolfssl_mac_to_string(int mac)
|
||||
macStr = "SHA1";
|
||||
break;
|
||||
#endif
|
||||
#ifdef HAVE_SHA224
|
||||
#ifdef WOLFSSL_SHA224
|
||||
case sha224_mac:
|
||||
macStr = "SHA224";
|
||||
break;
|
||||
@@ -15118,12 +15118,12 @@ static WC_INLINE const char* wolfssl_mac_to_string(int mac)
|
||||
macStr = "SHA256";
|
||||
break;
|
||||
#endif
|
||||
#ifdef HAVE_SHA384
|
||||
#ifdef WOLFSSL_SHA384
|
||||
case sha384_mac:
|
||||
macStr = "SHA384";
|
||||
break;
|
||||
#endif
|
||||
#ifdef HAVE_SHA512
|
||||
#ifdef WOLFSSL_SHA512
|
||||
case sha512_mac:
|
||||
macStr = "SHA512";
|
||||
break;
|
||||
|
@@ -1481,7 +1481,7 @@ extern void uITRON4_free(void *p) ;
|
||||
#ifndef NO_WRITEV
|
||||
#define NO_WRITEV
|
||||
#endif
|
||||
#ifndef HAVE_SHA512
|
||||
#ifndef WOLFSSL_SHA512
|
||||
#ifndef NO_SHA512
|
||||
#define NO_SHA512
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user