Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.36 KB

File metadata and controls

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