aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/scrypt.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Ignore unsigned overflow warningsRoss Nicoll2021-07-091-0/+3
| | | | | | | Ignore unsigned overflow warnings in: * Scrypt hash calculation as this is an intentional part of how they behave. * Calculating block subsidy as the Mersenne Twister intentionally expects this behaviour.
* Replace HMAC_SHA256 with Bitcoin's versionRoss Nicoll2021-07-091-333/+20
|
* crypto: Add scrypt N=1024 PoWbarrystyle2021-05-301-7/+251
| | | | | Add scrypt pow hashing algorithm as a proof of work function. Rebased from litecoin-project/litecoin@02961f0 minus strencodings.h macros.
* Litecoin: Add scrypt N=1024 PoWshaolinfry2021-05-301-0/+332