RSA 1.0.5 → 1.0.6
raw patch · 1 files changed
+6/−6 lines, 1 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
+ Codec.Crypto.RSA: ha_MD5 :: HashInfo
+ Codec.Crypto.RSA: instance Binary PrivateKey
+ Codec.Crypto.RSA: instance Binary PublicKey
- Codec.Crypto.RSA: encrypt :: (RandomGen g) => g -> PublicKey -> ByteString -> (ByteString, g)
+ Codec.Crypto.RSA: encrypt :: RandomGen g => g -> PublicKey -> ByteString -> (ByteString, g)
- Codec.Crypto.RSA: encrypt' :: (RandomGen g) => EncryptionOptions -> g -> PublicKey -> ByteString -> (ByteString, g)
+ Codec.Crypto.RSA: encrypt' :: RandomGen g => EncryptionOptions -> g -> PublicKey -> ByteString -> (ByteString, g)
- Codec.Crypto.RSA: generateKeyPair :: (RandomGen g) => g -> Int -> (PublicKey, PrivateKey, g)
+ Codec.Crypto.RSA: generateKeyPair :: RandomGen g => g -> Int -> (PublicKey, PrivateKey, g)
- Codec.Crypto.RSA: rsaes_pkcs1_v1_5_encrypt :: (RandomGen g) => g -> PublicKey -> ByteString -> (ByteString, g)
+ Codec.Crypto.RSA: rsaes_pkcs1_v1_5_encrypt :: RandomGen g => g -> PublicKey -> ByteString -> (ByteString, g)
Files
- RSA.cabal +6/−6
RSA.cabal view
@@ -1,6 +1,6 @@ name: RSA category: Cryptography, Codec-version: 1.0.5+version: 1.0.6 license: BSD3 license-file: LICENSE author: Adam Wick <awick@galois.com>@@ -63,11 +63,11 @@ else build-depends: base >= 4 && < 5, SHA build-depends: bytestring, test-framework >= 0.3 && < 0.4- if flag(QuickCheck1)- build-depends: QuickCheck < 2, test-framework-quickcheck >= 0.2.6 && < 0.3- CPP-Options: -DQUICKCHECK1- else- build-depends: QuickCheck >= 2 && < 3, test-framework-quickcheck2 >= 0.2.7 && < 0.3+ if flag(QuickCheck1)+ build-depends: QuickCheck < 2, test-framework-quickcheck >= 0.2.6 && < 0.3+ CPP-Options: -DQUICKCHECK1+ else+ build-depends: QuickCheck >= 2 && < 3, test-framework-quickcheck2 >= 0.2.7 && < 0.3 GHC-Options: -O2 -Wall -fno-ignore-asserts -fno-warn-orphans CPP-Options: -DRSA_TEST Main-Is: Test.hs