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.
This commit is contained in:
John Safranek
2018-03-07 10:55:29 -08:00
parent 9d4de6908c
commit 369c2debde
3 changed files with 4 additions and 6 deletions

3
.gitignore vendored
View File

@ -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

View File

@ -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

View File

@ -173,11 +173,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 */