crypto-cipher-types 0.0.4 → 0.0.5
raw patch · 2 files changed
+3/−5 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Crypto.Cipher.Types: streamDecrypt :: StreamCipher cipher => cipher -> ByteString -> (ByteString, cipher)
- Crypto.Cipher.Types: streamEncrypt :: StreamCipher cipher => cipher -> ByteString -> (ByteString, cipher)
+ Crypto.Cipher.Types: streamCombine :: StreamCipher cipher => cipher -> ByteString -> (ByteString, cipher)
Files
- Crypto/Cipher/Types.hs +2/−4
- crypto-cipher-types.cabal +1/−1
Crypto/Cipher/Types.hs view
@@ -79,10 +79,8 @@ -- | Symmetric stream cipher class class Cipher cipher => StreamCipher cipher where- -- | Encrypt using the stream cipher- streamEncrypt :: cipher -> ByteString -> (ByteString, cipher)- -- | Decrypt using the stream cipher- streamDecrypt :: cipher -> ByteString -> (ByteString, cipher)+ -- | Combine using the stream cipher+ streamCombine :: cipher -> ByteString -> (ByteString, cipher) -- | Symmetric block cipher class class Cipher cipher => BlockCipher cipher where
crypto-cipher-types.cabal view
@@ -1,5 +1,5 @@ Name: crypto-cipher-types-Version: 0.0.4+Version: 0.0.5 Synopsis: Generic cryptography cipher types Description: Generic cryptography cipher types License: BSD3