cryptohash 0.6 → 0.6.1
raw patch · 1 files changed
+7/−3 lines, 1 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
+ Crypto.Hash.MD2: instance Hash Ctx MD2
+ Crypto.Hash.MD2: instance Serialize MD2
+ Crypto.Hash.MD4: instance Hash Ctx MD4
+ Crypto.Hash.MD4: instance Serialize MD4
+ Crypto.Hash.MD5: instance Hash Ctx MD5
+ Crypto.Hash.MD5: instance Serialize MD5
+ Crypto.Hash.RIPEMD160: instance Hash Ctx RIPEMD160
+ Crypto.Hash.RIPEMD160: instance Serialize RIPEMD160
+ Crypto.Hash.SHA1: instance Hash Ctx SHA1
+ Crypto.Hash.SHA1: instance Serialize SHA1
+ Crypto.Hash.SHA224: instance Hash Ctx SHA224
+ Crypto.Hash.SHA224: instance Serialize SHA224
+ Crypto.Hash.SHA256: instance Hash Ctx SHA256
+ Crypto.Hash.SHA256: instance Serialize SHA256
+ Crypto.Hash.SHA384: instance Hash Ctx SHA384
+ Crypto.Hash.SHA384: instance Serialize SHA384
+ Crypto.Hash.SHA512: instance Hash Ctx SHA512
+ Crypto.Hash.SHA512: instance Serialize SHA512
+ Crypto.Hash.Skein256: instance Hash Ctx Skein256
+ Crypto.Hash.Skein256: instance Serialize Skein256
+ Crypto.Hash.Skein512: instance Hash Ctx Skein512
+ Crypto.Hash.Skein512: instance Serialize Skein512
+ Crypto.Hash.Tiger: instance Hash Ctx Tiger
+ Crypto.Hash.Tiger: instance Serialize Tiger
Files
- cryptohash.cabal +7/−3
cryptohash.cabal view
@@ -1,5 +1,5 @@ Name: cryptohash-Version: 0.6+Version: 0.6.1 Description: A collection of crypto hashes, with a practical incremental and one-pass, pure APIs, with performance close to the fastest implementations available in others languages.@@ -15,6 +15,7 @@ Category: Data, Cryptography Build-Type: Simple Cabal-Version: >=1.6+Homepage: http://github.com/vincenthz/hs-cryptohash data-files: README extra-source-files:@@ -29,10 +30,13 @@ Flag cryptoapi Description: Defines crypto-api instances- Default: False+ Default: True Library- Build-Depends: base >= 3 && < 5, bytestring+ Build-Depends: base >= 4 && < 6, bytestring+ if flag(cryptoapi)+ Build-depends: crypto-api >= 0.1, tagged >= 0.1, cereal >= 0.2+ cpp-options: -DHAVE_CRYPTOAPI Extensions: ForeignFunctionInterface Exposed-modules: Crypto.Hash.SHA1 Crypto.Hash.SHA224