Skip to content

Commit

Permalink
Swap openssl base provider for default provider in integration tests
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Leach <[email protected]>
  • Loading branch information
alexleach authored and williamcroberts committed Sep 6, 2024
1 parent fbe5052 commit 589eb3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/p11-tool.sh.nosetup
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ auth_myrsakey=$(echo "$yaml_myrsakey" | grep "object-auth" | cut -d' ' -f2-)

setup_asan

openssl dgst -provider tpm2 -provider base \
openssl dgst -provider tpm2 -provider default \
-sha256 -sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:-1 \
-sign "$TPM2_PKCS11_STORE/myrsakey.pem" -out ${tempdir}/sig -passin "pass:$auth_myrsakey" ${tempdir}/data

Expand Down Expand Up @@ -252,7 +252,7 @@ auth_myecckey=$(echo "$yaml_myecckey" | grep "object-auth" | cut -d' ' -f2-)

setup_asan

openssl dgst -provider tpm2 -provider base \
openssl dgst -provider tpm2 -provider default \
-sha1 -sign "$TPM2_PKCS11_STORE/myecckey.pem" -out ${tempdir}/sig -passin "pass:$auth_myecckey" ${tempdir}/data

openssl dgst -sha1 -verify ${tempdir}/eccpubkey.pem -signature ${tempdir}/sig ${tempdir}/data
Expand Down

0 comments on commit 589eb3b

Please sign in to comment.