ctaocrypt -> wolfcrypt

This commit is contained in:
kaleb-himes 2014-12-30 11:57:58 -07:00
parent 7da867135f
commit 23368a2bca
4 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@
#ifndef WOLFSSL_BN_H_
#define WOLFSSL_BN_H_
#include <wolfssl/ctaocrypt/settings.h>
#include <wolfssl/wolfcrypt/settings.h>
#ifdef __cplusplus
extern "C" {

View File

@ -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*);

View File

@ -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*);

View File

@ -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*);