crypton/CHANGELOG.md

52 lines
1.4 KiB
Markdown
Raw Normal View History

## 0.9
* Quiet down unused module imports
2015-10-11 12:54:54 +03:00
## 0.8
* Add support for ChaChaPoly1305 Nonce Increment (John Galt)
* Move repository to the haskell-crypto organisation
2015-08-16 18:33:34 +03:00
## 0.7
2015-08-18 14:03:42 +03:00
* Add PKCS5 / PKCS7 padding and unpadding methods
2015-08-16 18:33:34 +03:00
* Fix ChaChaPoly1305 Decryption
* Add support for BCrypt (Luke Taylor)
2015-08-16 18:33:34 +03:00
2015-07-03 14:44:23 +03:00
## 0.6
2015-07-25 10:52:00 +03:00
* Add ChaChaPoly1305 AE cipher
2015-07-03 14:44:23 +03:00
* Add instructions in README for building on old OSX
* Fix blocking /dev/random Andrey Sverdlichenko
2015-06-21 17:18:40 +03:00
## 0.5
* Fix all strays exports to all be under the cryptonite prefix.
2015-06-20 17:52:43 +03:00
## 0.4
* Add a System DRG that represent a referentially transparent of evaluated bytes
while using lazy evaluation for future entropy values.
2015-06-02 16:29:33 +03:00
## 0.3
2015-06-19 13:06:48 +03:00
* Allow drgNew to run in any MonadRandom, providing cascading initialization
2015-06-10 14:29:18 +03:00
* Remove Crypto.PubKey.HashDescr in favor of just having the algorithm
specified in PKCS15 RSA function.
2015-06-09 16:40:46 +03:00
* Fix documentation in cipher sub section (Luke Taylor)
2015-06-09 17:44:12 +03:00
* Cleanup AES dead functions (Luke Taylor)
2015-06-09 16:39:20 +03:00
* Fix Show instance of Digest to display without quotes similar to cryptohash
2015-06-02 16:29:33 +03:00
* Use scrubbed bytes instead of bytes for P256 scalar
2015-05-25 11:16:26 +03:00
## 0.2
2015-06-01 09:52:55 +03:00
* Fix P256 compilation and exactness, + add tests
* Add a raw memory number serialization capability (i2osp, os2ip)
* Improve tests for number serialization
* Improve tests for ECC arithmetics
* Add Ord instance for Digest (Nicolas Di Prima)
2015-05-25 11:16:26 +03:00
* Fix entropy compilation on windows 64 bits.
2015-05-22 20:43:22 +03:00
## 0.1
* Initial release