]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - demos/README.txt
demos: update readme file with pbkdf2 and scrypt examples.
[thirdparty/openssl.git] / demos / README.txt
index 383d0e5b8039da43ecaeb8d5c4cae63b2bb3cf1a..8adfdb774dd0e1f696d377f5e51fd483696345b3 100644 (file)
@@ -18,6 +18,11 @@ EVP_MD_demo.c          Compute a digest from multiple buffers
 EVP_MD_stdin.c         Compute a digest with data read from stdin
 EVP_f_md.c             Compute a digest using BIO and EVP_f_md
 
+kdf:
+hkdf.c                 Demonstration of HMAC based key derivation
+pbkdf2.c               Demonstration of PBKDF2 password based key derivation
+scrypt.c               Demonstration of SCRYPT password based key derivation
+
 pkey:
 EVP_PKEY_EC_keygen.c   Generate an EC key.
 
@@ -26,3 +31,6 @@ smime:
 pkcs12:
 pkread.c               Print out a description of a PKCS12 file.
 pkwrite.c              Add a password to an existing PKCS12 file.
+
+signature:
+EVP_Signature_demo.c   Compute and verify a signature from multiple buffers