summaryrefslogtreecommitdiffstats
path: root/demos/README.txt
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-03-02 17:39:28 +0000
committerPauli <pauli@openssl.org>2022-03-07 09:25:00 +1100
commite9492d1cecf459261f1f5ac0eb03e9c631600537 (patch)
treeae8c853b3dd98063a297972a958a77030cb0b035 /demos/README.txt
parent3dafeacef8d7bf82e462cc52659681108db42e43 (diff)
Add EVP demos for RSA-PSS signing and verification
Two demos are provided: one using RSA-PSS directly in which a digest must be provided, and one using RSA-PSS with the EVP_DigestSign APIs which performs the hashing for you. Fixes #14113. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17800)
Diffstat (limited to 'demos/README.txt')
-rw-r--r--demos/README.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/demos/README.txt b/demos/README.txt
index 42b464bc0e..045be5ffa1 100644
--- a/demos/README.txt
+++ b/demos/README.txt
@@ -43,3 +43,5 @@ pkwrite.c Add a password to an existing PKCS12 file.
signature:
EVP_Signature_demo.c Compute and verify a signature from multiple buffers
+rsa_pss_direct.c Compute and verify an RSA-PSS signature from a hash
+rsa_pss_hash.c Compute and verify an RSA-PSS signature over a buffer