AES 0.2.5 → 0.2.6
raw patch · 4 files changed
+2/−3 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- AES.cabal +1/−1
- Codec/Crypto/AES/IO.hsc +0/−1
- Codec/Crypto/AES/Random.hs +0/−1
- cbits/ctr_inc.c +1/−0
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.5+Version: 0.2.6 License: BSD3 License-file: COPYING Copyright: Copyright (c) 2009 University of Tromsø
Codec/Crypto/AES/IO.hsc view
@@ -10,7 +10,6 @@ import Foreign import Control.Applicative import Control.Monad-import Numeric #include "aesopt.h" #include "aes.h"
Codec/Crypto/AES/Random.hs view
@@ -11,7 +11,6 @@ import Codec.Crypto.AES.IO import Control.Concurrent.MVar import qualified Data.ByteString as B-import qualified Data.ByteString.Lazy as BL import Data.List -- | Randomness from a system source of nonsense such as /dev/random
cbits/ctr_inc.c view
@@ -1,3 +1,4 @@+#include "brg_types.h" #include "aesopt.h" #include "ctr_inc.h" #include <stdio.h>