mirror of https://github.com/wolfSSL/wolfssl.git
Test Fixes
1. Removed redundant forward declaration of RsaKey from hmac.h. 2. Updated gitignore with the first and last files. 3. Updated autogen with touching the first and last files.cert-3389
parent
3685b7b176
commit
19da916102
|
|
@ -40,9 +40,10 @@ wolfssl-config
|
|||
cyassl.sublime*
|
||||
fips.h
|
||||
fips.c
|
||||
fipsv2.c
|
||||
fips_test.c
|
||||
fips
|
||||
wolfcrypt_first.c
|
||||
wolfcrypt_last.c
|
||||
selftest.c
|
||||
src/async.c
|
||||
wolfssl/async.h
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@ if test -e .git; then
|
|||
touch ./ctaocrypt/src/fips_test.c
|
||||
touch ./wolfcrypt/src/fips.c
|
||||
touch ./wolfcrypt/src/fips_test.c
|
||||
touch ./wolfcrypt/src/wolfcrypt_first.c
|
||||
touch ./wolfcrypt/src/wolfcrypt_last.c
|
||||
touch ./wolfssl/wolfcrypt/fips.h
|
||||
|
||||
# touch CAVP selftest files for non-selftest distribution
|
||||
|
|
|
|||
|
|
@ -149,11 +149,6 @@ typedef struct Hmac {
|
|||
#endif /* WOLFSSL_ASYNC_CRYPT */
|
||||
} Hmac;
|
||||
|
||||
#ifndef WC_HMAC_TYPE_DEFINED
|
||||
typedef struct RsaKey RsaKey;
|
||||
#define WC_HMAC_TYPE_DEFINED
|
||||
#endif
|
||||
|
||||
#endif /* HAVE_FIPS */
|
||||
|
||||
/* does init */
|
||||
|
|
|
|||
Loading…
Reference in New Issue