account for rsa_pss_rsae vs rsa_pss_pss type

This commit is contained in:
JacobBarthelmeh
2024-12-06 17:15:11 -07:00
parent 93812e4286
commit 3aa2881cd4
4 changed files with 70 additions and 6 deletions

View File

@@ -1228,6 +1228,27 @@ do
done
IFS="$OIFS" #restore separator
# Test for RSA-PSS certs
echo -e "Doing interop RSA-PSS test"
key_file=${CERT_DIR}/rsapss/server-rsapss-priv.pem
cert_file=${CERT_DIR}/rsapss/server-rsapss.pem
ca_file=${CERT_DIR}/client-cert.pem
openssl_suite="RSAPSS"
start_openssl_server
cert="${CERT_DIR}/client-cert.pem"
key="${CERT_DIR}/client-key.pem"
caCert="${CERT_DIR}/rsapss/ca-rsapss.pem"
crl="-C"
wolfSuite="ALL"
version="4"
port=$server_port
do_wolfssl_client
version="3"
do_wolfssl_client
do_cleanup
echo -e "wolfSSL total cases $wolf_cases_total"