Merge pull request #8857 from miyazakh/tsip_fix

fix TSIP TLS example program
This commit is contained in:
JacobBarthelmeh
2025-06-10 16:26:34 -06:00
committed by GitHub
8 changed files with 116 additions and 101 deletions

View File

@@ -3557,6 +3557,9 @@ int SetKeysSide(WOLFSSL* ssl, enum encrypt_side side)
#if defined(WOLFSSL_RENESAS_FSPSM_TLS)
FSPSM_ST* cbInfo = (FSPSM_ST*)ctx;
cbInfo->side = side;
#elif defined(WOLFSSL_RENESAS_TSIP_TLS)
TsipUserCtx* cbInfo = (TsipUserCtx*)ctx;
cbInfo->key_side = side;
#endif
ret = ssl->ctx->EncryptKeysCb(ssl, ctx);
}