Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 1.59 KB

c++_cryptography_symmetric_block_cipher.md

File metadata and controls

52 lines (41 loc) · 1.59 KB
title keywords summary permalink folder references authors current_reviews last_updated tags
C++ Symmetric String Encryption/Decryption with a Block Cipher using Botan
sample
Symmetric string encryption/decryption with a block cipher in C++ using Botan
c++_cryptography_symmetric_block_cipher.html
C++ Cryptography
url description
Cryptography Symmetric Encryption/Decryption Documentation
name
Jakob Benz
2018-10-01
C++
Botan
AES
Symmetric
Key
Block Cipher
AES-256

Use cases

  • Random key generation
  • Key-based block cipher string encryption/decryption

Installation

Install Botan:

Supported C++ versions

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

Example Code for symmetric block cipher string encryption/decryption with C++ using Botan

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

{% include links.html %}