Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-13 | crypto: add AES 128/256 CBC classes | Cory Fields | |
The output should always match openssl's, even for failed operations. Even for a decrypt with broken padding, the output is always deterministic (and attemtps to be constant-time). | |||
2016-05-13 | Add ctaes-based constant time AES implementation | Pieter Wuille | |
2016-05-11 | Merge commit 'a545127fbccef4ee674d18d43732ce00ba97f782' as 'src/crypto/ctaes' | Pieter Wuille | |
2016-04-15 | crypto: bytes counts are 64 bit | Wladimir J. van der Laan | |
Byte counts for SHA256, SHA512, SHA1 and RIPEMD160 must be 64 bits. `size_t` has a different size per platform, causing divergent results when hashing more than 4GB of data. | |||
2015-03-06 | build: Endian compatibility | Wladimir J. van der Laan | |
- Detect endian instead of stopping configure on big-endian - Add `byteswap.h` and `endian.h` header for compatibility with Windows and other operating systems that don't come with them - Update `crypto/common.h` functions to use compat endian header | |||
2015-01-06 | Use libsecp256k1's RFC6979 implementation | Pieter Wuille | |
2014-12-19 | Added "Core" to copyright headers | sandakersmann | |
Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60 | |||
2014-11-20 | Header define style cleanups | Pieter Wuille | |
2014-11-20 | Add the RFC6979 PRNG | Pieter Wuille | |
2014-11-20 | Add HMAC-SHA256 | Pieter Wuille | |
2014-11-20 | Split up crypto/sha2 | Pieter Wuille | |
2014-11-03 | Fix all header defines | Pavel JanÃk | |
2014-09-29 | update license of compat and crypto | Philip Kaufmann | |
- change license to be just MIT for all files in compat and crypto - also add missing header end comments - ensure default header include style | |||
2014-09-25 | Apply clang-format on crypto/* and compat/* | Pieter Wuille | |
2014-09-14 | header include cleanup | Philip Kaufmann | |
- ensures alphabetical ordering for includes etc. in source file headers | |||
2014-06-21 | Add <Hasher>::OUTPUT_SIZE | Pieter Wuille | |
2014-06-21 | crypto: explicitly check for byte read/write functions | Cory Fields | |
Don't depend on hard-coded platform lists | |||
2014-06-21 | Move {Read,Write}{LE,BE}{32,64} to common.h and use builtins if possible | Pieter Wuille | |
2014-06-21 | Add built-in RIPEMD-160 implementation | Pieter Wuille | |
2014-06-21 | Move crypto implementations to src/crypto/ | Pieter Wuille | |