• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..13-Nov-2021-

bio/13-Nov-2021-

certs/13-Nov-2021-

cipher/13-Nov-2021-

cms/13-Nov-2021-

digest/13-Nov-2021-

kdf/13-Nov-2021-

mac/13-Nov-2021-

pkcs12/13-Nov-2021-

pkey/13-Nov-2021-

signature/13-Nov-2021-

smime/13-Nov-2021-

README.txt A D13-Nov-20211.2 KiB4027

README.txt

1OpenSSL Demonstration Applications
2
3This folder contains source code that demonstrates the proper use of the OpenSSL
4library API.
5
6bio:                   Demonstration of a simple TLS client and server
7
8certs:                 Demonstration of creating certs, using OCSP
9
10cipher:
11aesgcm.c               Demonstration of symmetric cipher GCM mode encrypt/decrypt
12aesccm.c               Demonstration of symmetric cipher CCM mode encrypt/decrypt
13
14cms:
15
16digest:
17EVP_MD_demo.c          Compute a digest from multiple buffers
18EVP_MD_stdin.c         Compute a digest with data read from stdin
19EVP_f_md.c             Compute a digest using BIO and EVP_f_md
20
21kdf:
22hkdf.c                 Demonstration of HMAC based key derivation
23pbkdf2.c               Demonstration of PBKDF2 password based key derivation
24scrypt.c               Demonstration of SCRYPT password based key derivation
25
26mac:
27gmac.c                 Demonstration of GMAC message authentication
28
29pkey:
30EVP_PKEY_EC_keygen.c   Generate an EC key.
31
32smime:
33
34pkcs12:
35pkread.c               Print out a description of a PKCS12 file.
36pkwrite.c              Add a password to an existing PKCS12 file.
37
38signature:
39EVP_Signature_demo.c   Compute and verify a signature from multiple buffers
40