diff --git a/wolfssl/openssl/bn.h b/wolfssl/openssl/bn.h index ae9d6ecc3e..88e7fc9559 100644 --- a/wolfssl/openssl/bn.h +++ b/wolfssl/openssl/bn.h @@ -4,7 +4,7 @@ #ifndef WOLFSSL_BN_H_ #define WOLFSSL_BN_H_ -#include +#include #ifdef __cplusplus extern "C" { diff --git a/wolfssl/openssl/md5.h b/wolfssl/openssl/md5.h index 57cc89b68e..735095234f 100644 --- a/wolfssl/openssl/md5.h +++ b/wolfssl/openssl/md5.h @@ -16,7 +16,7 @@ typedef struct WOLFSSL_MD5_CTX { - int holder[24]; /* big enough to hold ctaocrypt md5, but check on init */ + int holder[24]; /* big enough to hold wolfcrypt md5, but check on init */ } WOLFSSL_MD5_CTX; WOLFSSL_API void wolfSSL_MD5_Init(WOLFSSL_MD5_CTX*); diff --git a/wolfssl/openssl/ripemd.h b/wolfssl/openssl/ripemd.h index 3a0b935d03..ef1578e918 100644 --- a/wolfssl/openssl/ripemd.h +++ b/wolfssl/openssl/ripemd.h @@ -12,7 +12,7 @@ typedef struct WOLFSSL_RIPEMD_CTX { - int holder[32]; /* big enough to hold ctaocrypt, but check on init */ + int holder[32]; /* big enough to hold wolfcrypt, but check on init */ } WOLFSSL_RIPEMD_CTX; WOLFSSL_API void wolfSSL_RIPEMD_Init(WOLFSSL_RIPEMD_CTX*); diff --git a/wolfssl/openssl/sha.h b/wolfssl/openssl/sha.h index 75ab6dd95b..7f8b0ebd6a 100644 --- a/wolfssl/openssl/sha.h +++ b/wolfssl/openssl/sha.h @@ -16,7 +16,7 @@ typedef struct WOLFSSL_SHA_CTX { - int holder[24]; /* big enough to hold ctaocrypt sha, but check on init */ + int holder[24]; /* big enough to hold wolfcrypt sha, but check on init */ } WOLFSSL_SHA_CTX; WOLFSSL_API void wolfSSL_SHA_Init(WOLFSSL_SHA_CTX*); @@ -45,7 +45,7 @@ typedef WOLFSSL_SHA_CTX SHA_CTX; typedef struct WOLFSSL_SHA256_CTX { - int holder[28]; /* big enough to hold ctaocrypt sha, but check on init */ + int holder[28]; /* big enough to hold wolfcrypt sha, but check on init */ } WOLFSSL_SHA256_CTX; WOLFSSL_API void wolfSSL_SHA256_Init(WOLFSSL_SHA256_CTX*);