2
0

README.txt 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. ecdh.c Demonstration of ECDH key exchange
  37. mac:
  38. gmac.c Demonstration of GMAC message authentication
  39. poly1305.c Demonstration of Poly1305-AES message authentication
  40. siphash.c Demonstration of SIPHASH message authentication
  41. pkcs12:
  42. pkread.c Print out a description of a PKCS12 file.
  43. pkwrite.c Add a password to an existing PKCS12 file.
  44. pkey:
  45. EVP_PKEY_EC_keygen.c Generate an EC key.
  46. EVP_PKEY_RSA_keygen.c Generate an RSA key.
  47. EVP_PKEY_DSA_keygen.c Generate a DSA key.
  48. EVP_PKEY_DSA_paramgen.c Generate a DSA param key.
  49. EVP_PKEY_DSA_paramvalidate.c Validate a DSA param key.
  50. EVP_PKEY_DSA_paramfromdata.c Load a DSA param key using raw data.
  51. signature:
  52. EVP_EC_Signature_demo.c Compute and verify an EC signature.
  53. EVP_DSA_Signature_demo.c Compute and verify a DSA signature.
  54. EVP_ED_Signature_demo.c Compute and verify an ED25519 signature.
  55. rsa_pss_direct.c Compute and verify an RSA-PSS signature from a hash
  56. rsa_pss_hash.c Compute and verify an RSA-PSS signature over a buffer
  57. smime: Demonstrations related to S/MIME
  58. sslecho:
  59. main.c Simple SSL/TLS echo client/server.