mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
addressed jenkins failure
This commit is contained in:
@ -15,6 +15,7 @@ EXTRA_DIST+= IDE/Renesas/e2studio/RA6M4/test/src/wolf_client.c
|
||||
EXTRA_DIST+= IDE/Renesas/e2studio/RA6M4/test/src/hal_entry.c
|
||||
EXTRA_DIST+= IDE/Renesas/e2studio/RA6M4/test/src/sce_tst_thread_entry.c
|
||||
EXTRA_DIST+= IDE/Renesas/e2studio/RA6M4/test/src/SEGGER_RTT/myprint.c
|
||||
EXTRA_DIST+= IDE/Renesas/e2studio/RA6M4/test/src/common/.gitignore
|
||||
EXTRA_DIST+= IDE/Renesas/e2studio/RA6M4/test/key_data/key_data_sce.c
|
||||
EXTRA_DIST+= IDE/Renesas/e2studio/RA6M4/test/key_data/key_data.h
|
||||
EXTRA_DIST+= IDE/Renesas/e2studio/RA6M4/common/wolfssl_demo.h
|
||||
|
@ -16712,6 +16712,7 @@ static WC_INLINE int VerifyMac(WOLFSSL* ssl, const byte* input, word32 msgSz,
|
||||
|
||||
if (ssl->options.tls) {
|
||||
#if defined(HAVE_PK_CALLBACKS)
|
||||
ret = PROTOCOLCB_UNAVAILABLE;
|
||||
if(ssl->ctx->VerifymacCb) {
|
||||
void* ctx = wolfSSL_GetVerifymacCtx(ssl);
|
||||
ret = ssl->ctx->VerifymacCb(ssl, input,
|
||||
|
@ -402,6 +402,7 @@ int DeriveTlsKeys(WOLFSSL* ssl)
|
||||
else {
|
||||
#endif
|
||||
#if defined(HAVE_PK_CALLBACKS)
|
||||
ret = PROTOCOLCB_UNAVAILABLE;
|
||||
if (ssl->ctx->GenSessionKeyCb) {
|
||||
void* ctx = wolfSSL_GetGenSesssionKeyCtx(ssl);
|
||||
ret = ssl->ctx->GenSessionKeyCb(ssl, ctx);
|
||||
@ -593,6 +594,7 @@ int MakeTlsMasterSecret(WOLFSSL* ssl)
|
||||
} else
|
||||
#endif
|
||||
#if defined(HAVE_PK_CALLBACKS)
|
||||
ret = PROTOCOLCB_UNAVAILABLE;
|
||||
if (ssl->ctx->GenMasterCb) {
|
||||
void* ctx = wolfSSL_GetGenMasterSecretCtx(ssl);
|
||||
ret = ssl->ctx->GenMasterCb(ssl, ctx);
|
||||
|
Reference in New Issue
Block a user