`make update'
This commit is contained in:
parent
3257904c56
commit
93e147dd32
3 changed files with 5 additions and 0 deletions
|
@ -127,6 +127,7 @@ hw_atalla.o: ../../include/openssl/opensslconf.h
|
|||
hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
||||
hw_atalla.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
hw_atalla.o: ../../include/openssl/stack.h ../cryptlib.h engine_int.h
|
||||
hw_atalla.o: vendor_defns/atalla.h
|
||||
hw_cswift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
|
@ -137,6 +138,7 @@ hw_cswift.o: ../../include/openssl/opensslconf.h
|
|||
hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
||||
hw_cswift.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
hw_cswift.o: ../../include/openssl/stack.h ../cryptlib.h engine_int.h
|
||||
hw_cswift.o: vendor_defns/cswift.h
|
||||
hw_ncipher.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
|
@ -147,3 +149,4 @@ hw_ncipher.o: ../../include/openssl/opensslconf.h
|
|||
hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h
|
||||
hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
hw_ncipher.o: ../../include/openssl/stack.h ../cryptlib.h engine_int.h
|
||||
hw_ncipher.o: vendor_defns/hwcryptohook.h
|
||||
|
|
|
@ -335,6 +335,7 @@ void ERR_load_ENGINE_strings(void);
|
|||
|
||||
/* Reason codes. */
|
||||
#define ENGINE_R_ALREADY_LOADED 100
|
||||
#define ENGINE_R_BIO_WAS_FREED 121
|
||||
#define ENGINE_R_BN_CTX_FULL 101
|
||||
#define ENGINE_R_BN_EXPAND_FAIL 102
|
||||
#define ENGINE_R_CONFLICTING_ENGINE_ID 103
|
||||
|
|
|
@ -126,6 +126,7 @@ static ERR_STRING_DATA ENGINE_str_functs[]=
|
|||
static ERR_STRING_DATA ENGINE_str_reasons[]=
|
||||
{
|
||||
{ENGINE_R_ALREADY_LOADED ,"already loaded"},
|
||||
{ENGINE_R_BIO_WAS_FREED ,"bio was freed"},
|
||||
{ENGINE_R_BN_CTX_FULL ,"BN_CTX full"},
|
||||
{ENGINE_R_BN_EXPAND_FAIL ,"bn_expand fail"},
|
||||
{ENGINE_R_CONFLICTING_ENGINE_ID ,"conflicting engine id"},
|
||||
|
|
Loading…
Reference in a new issue