digestpp icon indicating copy to clipboard operation
digestpp copied to clipboard

C++11 header-only message digest library

Results 6 digestpp issues
Sort by recently updated
recently updated
newest added

See https://github.com/coruus/sphlib and https://github.com/pornin/sphlib

As per https://github.com/BLAKE3-team/BLAKE3/issues/19#issuecomment-574061588 It might be a good idea to include reduced round skein for possible speedup, for both standard and tree versions of skein.

for BLAKE2bf and BLAKE2sf https://eprint.iacr.org/2019/1492.pdf for BLAKE3 https://github.com/BLAKE3-team/BLAKE3-specs/blob/master/blake3.pdf

#define NOMINMAX should before including any of Windows / Platform SDK header. Otherwise min/max macroses from there break std::min and std::max giving syntax errors during compilation Reference: https://stackoverflow.com/questions/5004858/why-is-stdmin-failing-when-windows-h-is-included

File: detail/functions.hpp line 47 Code: #ifdef __APPLE__ inline size_t byteswap(size_t val) { switch(sizeof(size_t)) { case sizeof(uint16_t): return (size_t)byteswap((uint16_t)val); case sizeof(uint32_t): return (size_t)byteswap((uint32_t)val); case sizeof(uint64_t): return (size_t)byteswap((uint64_t)val); } //