Skip to content

falk-werner/openssl-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build

openssl-example

This repository contains examples to show how to use the OpenSSL C API.

Build

cmake -B build
cmake --build build
./build/create_test_pki

Glossary

Abbreviation Description
X.509 A standard defining the format of public key certificates
CA Certificate Authority
CSR Certificate Signing Request
CRL Certififcate Revocation List
CMS Cryptographic Message Syntax
PKI Public Key Infrastructure

Examples

Remarks

  • Some of the examples make use of a test PKI.
  • The purpose of this repository is to give an overview about OpenSSL's C API. Therefore, there is almost no error handling contained in the examples.

Depedencies