packages feed

crypto-cipher-benchmarks 0.0.3 → 0.0.4

raw patch · 2 files changed

+4/−2 lines, 2 filesdep ~crypto-cipher-typesPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: crypto-cipher-types

API changes (from Hackage documentation)

Files

Crypto/Cipher/Benchmarks.hs view
@@ -53,6 +53,7 @@ data Mode = ECB           | CBC           | CTR+          | CFB           | XTS           | OCB           | CCM@@ -76,6 +77,7 @@ modeToBench :: BlockCipher cipher => cipher -> Mode -> Maybe (B.ByteString -> B.ByteString) modeToBench cipher ECB = Just $ ecbEncrypt cipher modeToBench cipher CBC = Just $ cbcEncrypt cipher nullIV+modeToBench cipher CFB = Just $ cfbEncrypt cipher nullIV modeToBench cipher CTR = Just $ ctrCombine cipher nullIV modeToBench cipher XTS     | blockSize cipher == 16 = Just $ xtsEncrypt (cipher, cipher) nullIV 0
crypto-cipher-benchmarks.cabal view
@@ -1,5 +1,5 @@ Name:                crypto-cipher-benchmarks-Version:             0.0.3+Version:             0.0.4 Synopsis:            Generic cryptography cipher benchmarks Description:         Generic cryptography cipher benchmarks License:             BSD3@@ -20,7 +20,7 @@                    , byteable >= 0.1.1                    , securemem >= 0.1.1                    , criterion-                   , crypto-cipher-types >= 0.0.5+                   , crypto-cipher-types >= 0.0.6                    , mtl                    , pretty   ghc-options:       -Wall -fwarn-tabs