AES 0.2.7 → 0.2.8
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- AES.cabal +1/−1
- Codec/Crypto/AES/Random.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.7+Version: 0.2.8 License: BSD3 License-file: COPYING Copyright: Copyright (c) 2009 University of Tromsø
Codec/Crypto/AES/Random.hs view
@@ -15,7 +15,7 @@ -- | Randomness from a system source of nonsense such as /dev/random randBytes :: Int -> IO B.ByteString-randBytes n = withFile "/dev/urandom" ReadMode $ \h -> B.hGet h n+randBytes n = withFile "/dev/random" ReadMode $ \h -> B.hGet h n {-# NOINLINE ctx #-} ctx :: MVar AESCtx