Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 1.44 KB

c++_cryptography_asymmetric_key_storage.md

File metadata and controls

52 lines (41 loc) · 1.44 KB
title keywords summary permalink folder references authors current_reviews last_updated tags
C++ Asymmetric Key Storage using Botan
sample
Asymmetric key storage in C++ using Botan
c++_cryptography_asymmetric_key_storage.html
C++ Cryptography
url description
Cryptography RSA Documentation
name
Jakob Benz
2018-10-01
C++
Botan
RSA
Asymmetric
Key
Storage
PKCS#8
X.509
PEM

Use cases

  • Serialization of public and private (encrypted) key.
  • Deserialization of public key.

Installation

Install Botan:

Supported C++ versions

  • C++17 (C++1z) (ISO/IEC 14882:2017)

Example Code for key storage with C++ using Botan

{% include_relative src/cryptoexamples/key_storage.cpp %}

{% include links.html %}