Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.36 KB

c++_cryptography_hashing.md

File metadata and controls

51 lines (40 loc) · 1.36 KB
title keywords summary permalink folder references authors current_reviews last_updated tags
C++ String Hashing using Botan
sample
String hashing in C++ using Botan
c++_cryptography_hashing.html
C++ Cryptography
url description
Cryptography Message digests Documentation
name
Jakob Benz
2018-10-01
C++
Botan
Hashing
SHA
SHA-512

Use cases

  • Verifying whether a string has been changed or not.

Installation

Install Botan:

Supported C++ versions

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

Example Code for string hasing with C++ using Botan

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

{% include links.html %}