Skip to content
/ cryptic Public

SHA1, SHA2 and BASE64 algorithms header only library implemented with C++17

License

Notifications You must be signed in to change notification settings

ruoka/cryptic

Repository files navigation

cryptic

SHA1, SHA2 and BASE64 algorithms header only implementations with C++17.

Usage is straight forward.

Example #1

auto test1 = "The quick brown fox jumps over the lazy dog"s;
cout << cryptic::sha1::base64(test1) << endl;

Example #2

auto test2 = "The quick brown fox jumps over the lazy dog"s;
cout << cryptic::sha256::hexadecimal(test2) << endl;

Example #3

auto test3 = cryptic::base64::encode("Man"s);
cout << test3 << endl;

Example #4

auto test4 = cryptic::base64::decode(test3);
cout << test4 << endl;

About

SHA1, SHA2 and BASE64 algorithms header only library implemented with C++17

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published