AES 0.2.1 → 0.2.2
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Codec.Crypto.AES.Monad: type AEST m a = ReaderT AESCtx (WriterT ByteString m) a
Files
- AES.cabal +1/−1
- Codec/Crypto/AES/Monad.hs +1/−1
AES.cabal view
@@ -1,7 +1,7 @@ Name: AES Synopsis: Fast AES encryption/decryption for bytestrings Description: A zero-copy binding to Brian Gladman's AES implementation, including a copy of that implementation-Version: 0.2.1+Version: 0.2.2 License: BSD3 License-file: COPYING Copyright: Copyright (c) 2009 University of Tromsø
Codec/Crypto/AES/Monad.hs view
@@ -1,6 +1,6 @@ -- | An occasionally pure, monadic interface to AES module Codec.Crypto.AES.Monad(- AES, Mode(..), Direction(..), Cryptable(..), runAEST, runAES+ AES, AEST, Mode(..), Direction(..), Cryptable(..), runAEST, runAES ) where import qualified Codec.Crypto.AES.IO as AES