README.txt 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. OpenSSL Demonstration Applications
  2. This folder contains source code that demonstrates the proper use of the OpenSSL
  3. library API.
  4. Note: Makefiles are provided in the demo subfolders to demonstrate how to build
  5. them, but are not frequently used. Configure openssl with enable-demos to build
  6. them automatically through the perl based build system
  7. bio: Demonstration of a simple TLS client and server
  8. certs: Demonstration of creating certs, using OCSP
  9. cipher:
  10. aesgcm.c Demonstration of symmetric cipher GCM mode encrypt/decrypt
  11. aesccm.c Demonstration of symmetric cipher CCM mode encrypt/decrypt
  12. ariacbc.c Demonstration of symmetric cipher CBC mode encrypt/decrypt
  13. cms: Demonstrations related to the Cryptographic Message
  14. Syntax (CMS) standard
  15. digest:
  16. EVP_MD_demo.c Compute a digest from multiple buffers
  17. EVP_MD_stdin.c Compute a digest with data read from stdin
  18. EVP_MD_xof.c Compute a digest using the SHAKE256 XOF
  19. EVP_f_md.c Compute a digest using BIO and EVP_f_md
  20. encode:
  21. rsa_encode.c Encode and decode PEM-encoded RSA keys
  22. encrypt:
  23. rsa_encrypt.c Encrypt and decrypt data using an RSA keypair.
  24. guide: Sample code from the OpenSSL Guide tutorials. See
  25. the oss-guide-quic-introduction(7) man page.
  26. quic-client-block.c: A simple blocking QUIC client
  27. quic-client-non-block.c: A simple non-blocking QUIC client
  28. quic-multi-stream.c: A simple QUIC client using multiple streams
  29. tls-client-block.c: A simple blocking SSL/TLS client
  30. tls-client-non-block.c: A simple non-blocking SSL/TLS client
  31. http3: Demonstration of how to use OpenSSL's QUIC capabilities
  32. for HTTP/3.
  33. kdf:
  34. hkdf.c Demonstration of HMAC based key derivation
  35. pbkdf2.c Demonstration of PBKDF2 password based key derivation
  36. scrypt.c Demonstration of SCRYPT password based key derivation
  37. keyexch:
  38. x25519.c Demonstration of X25519 based key exchange
  39. ecdh.c Demonstration of ECDH key exchange
  40. mac:
  41. gmac.c Demonstration of GMAC message authentication
  42. poly1305.c Demonstration of Poly1305-AES message authentication
  43. siphash.c Demonstration of SIPHASH message authentication
  44. pkcs12:
  45. pkread.c Print out a description of a PKCS12 file.
  46. pkwrite.c Add a password to an existing PKCS12 file.
  47. pkey:
  48. EVP_PKEY_EC_keygen.c Generate an EC key.
  49. EVP_PKEY_RSA_keygen.c Generate an RSA key.
  50. EVP_PKEY_DSA_keygen.c Generate a DSA key.
  51. EVP_PKEY_DSA_paramgen.c Generate a DSA param key.
  52. EVP_PKEY_DSA_paramvalidate.c Validate a DSA param key.
  53. EVP_PKEY_DSA_paramfromdata.c Load a DSA param key using raw data.
  54. signature:
  55. EVP_EC_Signature_demo.c Compute and verify an EC signature.
  56. EVP_DSA_Signature_demo.c Compute and verify a DSA signature.
  57. EVP_ED_Signature_demo.c Compute and verify an ED25519 signature.
  58. rsa_pss_direct.c Compute and verify an RSA-PSS signature from a hash
  59. rsa_pss_hash.c Compute and verify an RSA-PSS signature over a buffer
  60. smime: Demonstrations related to S/MIME
  61. sslecho:
  62. main.c Simple SSL/TLS echo client/server.