All Projects → stbrumme → Hash Library

stbrumme / Hash Library

Licence: zlib
Portable C++ hashing library

Projects that are alternatives of or similar to Hash Library

hash-wasm
Lightning fast hash functions using hand-tuned WebAssembly binaries
Stars: ✭ 382 (+250.46%)
Mutual labels:  md5, hmac, sha1, sha256
Forge
A native implementation of TLS in Javascript and tools to write crypto-based and network-heavy webapps
Stars: ✭ 4,204 (+3756.88%)
Mutual labels:  md5, sha1, sha256, hmac
Openhashtab
📝 File hashing and checking shell extension
Stars: ✭ 599 (+449.54%)
Mutual labels:  md5, sha1, sha256
hmac.nim
HMAC-SHA1 and HMAC-MD5 hashing in Nim
Stars: ✭ 13 (-88.07%)
Mutual labels:  md5, hmac, sha1
Hash Buster
Crack hashes in seconds.
Stars: ✭ 981 (+800%)
Mutual labels:  md5, sha1, sha256
Hashcobra
HashCobra Hash Cracking tool.
Stars: ✭ 96 (-11.93%)
Mutual labels:  md5, sha1, sha256
Hashrat
Hashing tool supporting md5,sha1,sha256,sha512,whirlpool,jh and hmac versions of these. Includes recursive file hashing and other features.
Stars: ✭ 46 (-57.8%)
Mutual labels:  md5, sha1, sha256
Checksum
Checksum calculation extensions for Swift
Stars: ✭ 28 (-74.31%)
Mutual labels:  md5, sha1, sha256
crypto.js
base on crypto module
Stars: ✭ 13 (-88.07%)
Mutual labels:  md5, sha1, sha256
Cryptoswift
CryptoSwift is a growing collection of standard and secure cryptographic algorithms implemented in Swift
Stars: ✭ 8,846 (+8015.6%)
Mutual labels:  md5, sha1, hmac
Crypto Es
A cryptography algorithms library
Stars: ✭ 65 (-40.37%)
Mutual labels:  md5, sha1, sha256
Digestif
Simple hash algorithms in OCaml
Stars: ✭ 69 (-36.7%)
Mutual labels:  md5, sha1, sha256
hash-checker
Fast and simple application that allows you to generate and compare hashes from files and text
Stars: ✭ 72 (-33.94%)
Mutual labels:  md5, sha1, sha256
fhash
fHash - an open source files hash calculator for Windows and macOS
Stars: ✭ 222 (+103.67%)
Mutual labels:  md5, sha1, sha256
BruteForce
A simple brute forcer written in GO for SHA1, SHA256, SHA512, MD5 and bcrypt
Stars: ✭ 49 (-55.05%)
Mutual labels:  md5, sha1, sha256
Pure lua sha
SHA1, SHA2 and SHA3 functions written in pure Lua and optimized for speed
Stars: ✭ 78 (-28.44%)
Mutual labels:  md5, sha1, sha256
Rufus
The Reliable USB Formatting Utility
Stars: ✭ 16,917 (+15420.18%)
Mutual labels:  md5, sha1, sha256
Wjcryptlib
Public Domain C Library of Cryptographic functions. Including: MD5, SHA1, SHA256, SHA512, RC4, AES, AES-CTR, AES-OFB, AES-CBC
Stars: ✭ 250 (+129.36%)
Mutual labels:  md5, sha1, sha256
hediye
Hash Generator & Cracker
Stars: ✭ 40 (-63.3%)
Mutual labels:  md5, sha1, sha256
Gensum
Powerful checksum generator!
Stars: ✭ 12 (-88.99%)
Mutual labels:  md5, sha1, sha256

Portable C++ Hashing Library

This is a mirror of my library hosted at https://create.stephan-brumme.com/hash-library/

In a nutshell:

  • computes CRC32, MD5, SHA1 and SHA256 (most common member of the SHA2 functions), Keccak and its SHA3 sibling
  • optional HMAC (keyed-hash message authentication code)
  • no external dependencies, small code size
  • can work chunk-wise (for example when reading streams block-by-block)
  • portable: supports Windows and Linux, tested on Little Endian and Big Endian CPUs
  • roughly as fast as Linux core hashing functions
  • open source, zlib license

You can find code examples, benchmarks and much more on my website https://create.stephan-brumme.com/hash-library/

How to use

This example computes SHA256 hashes but the API is more or less identical for all hash algorithms:

// SHA2 test program
#include "sha256.h"
#include <iostream> // for std::cout only, not needed for hashing library

int main(int, char**)
{
  // create a new hashing object
  SHA256 sha256;

  // hashing an std::string
  std::cout << sha256("Hello World") << std::endl;
  // => a591a6d40bf420404a011733cfb7b190d62c65bf0bcda32b57b277d9ad9f146e

  // hashing a buffer of bytes
  const char* buffer = "How are you";
  std::cout << sha256(buffer, 11) << std::endl;
  // => 9c7d5b046878838da72e40ceb3179580958df544b240869b80d0275cc07209cc

  // or in a streaming fashion (re-use "How are you")
  SHA256 sha256stream;
  const char* url = "create.stephan-brumme.com"; // 25 bytes
  int step = 5;
  for (int i = 0; i < 25; i += step)
    sha256stream.add(url + i, step); // add five bytes at a time
  std::cout << sha256stream.getHash() << std::endl;
  // => 82aa771f1183c52f973c798c9243a1c73833ea40961c73e55e12430ec77b69f6

  return 0;
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].