All Versions
5
Latest Version
Avg Release Cycle
176 days
Latest Release
3385 days ago
Changelog History
Changelog History
-
v0.0.5.0 Changes
October 11, 2015- Added doctests and crash course introduction.
- Fixed some bugs in the test harnesses.
- Fixed some
hlint
gripes. - Minor touchups elsewhere.
-
v0.0.4.0 Changes
September 28, 2015Crypto.Sign.Ed25519
is now marked-XTrustworthy
.- There is now a
Generic
instance forSignature
on GHC 7.2 and above. - DEPRECATED:
createKeypairFromSeed
due to unsafety.- Use
createKeypairFromSeed_
instead, which will return aMaybe
.
- Use
- DEPRECATED:
sign'
andverify'
for bad naming- Use
dsign
anddverify
instead.
- Use
- Improve benchmarks.
- Huge overhaul to documentation, including design and implementation notes.
-
v0.0.3.0 Changes
September 26, 2015- ๐ Tighten dependencies everywhere for cleaner builds.
- ๐ Fix old code (including compatibility with newer
QuickCheck
versions) - ๐ New API:
toPublicKey :: SecretKey -> PublicKey
- Used to derive the public key for a given secret key
- ๐ New API:
createKeypairFromSeed :: ByteString -> (PublicKey, SecretKey)
- Used to create a deterministic Ed25519 keypair from a 32-byte seed.
- For GHC 7.2 and above, both
PublicKey
andSecretKey
are
now instances ofGeneric
. - ๐ Improved documentation.
- โ Various cleanups and some fixes in the tests and benchmarks.
โ This version also does not support GHC 6.12.3 officially anymore. While it should still work, it's no longer being tested.
-
v0.0.2.0 Changes
November 07, 2013๐ This release brings portability improvements (built and tested on GHC 6.12.3 to GHC 7.6.)
-
v0.0.1.0 Changes
November 06, 2013๐ Initial release.
- ๐ Contains detached signature support.
- Internally uses fast
ref10
C implementation from SUPERCOP.