packages feed

crypto-cipher-types 0.0.3 → 0.0.4

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Crypto/Cipher/Types.hs view
@@ -267,7 +267,7 @@                                | otherwise  -> Right $ Key sm             KeySizeEnum l | smLen `elem` l  -> Right $ Key sm                           | otherwise       -> Left $ KeyErrorInvalid ("valid size: " ++ show l)-            KeySizeFixed v | smLen < v      -> Right $ Key sm+            KeySizeFixed v | smLen == v     -> Right $ Key sm                            | otherwise      -> Left $ KeyErrorInvalid ("valid size: " ++ show v)  cbcEncryptGeneric :: BlockCipher cipher => cipher -> IV cipher -> ByteString -> ByteString
crypto-cipher-types.cabal view
@@ -1,5 +1,5 @@ Name:                crypto-cipher-types-Version:             0.0.3+Version:             0.0.4 Synopsis:            Generic cryptography cipher types Description:         Generic cryptography cipher types License:             BSD3