SHA256
SHA256 copied to clipboard
A C++ SHA256 implementation.
Some good implementations are out there. This one looks pretty clean. I was just going over Sha256 because I am trying out a Merkle Tree in C++. For that, I...
Hey, I wanted to use the sha256 library in an old project with C++11 standard, so I needed to adjust this one line in the header. This could save time...
Hello, I noticed some functions in this SHA256 implementation aren't inlined (where they possibly can be inlined). These are `rotr()`, `choose()`, `majority()`, `sig0()`, and `sig1()`. Compiler by itself will not...