README.txt 3.0 KB

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