hOpenPGP 1.5.1 → 1.5.2
raw patch · 4 files changed
+8/−8 lines, 4 filesdep ~conduitPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: conduit
API changes (from Hackage documentation)
- Codec.Encryption.OpenPGP.Types: EC :: PubKeyAlgorithm
+ Codec.Encryption.OpenPGP.Types: ECDH :: PubKeyAlgorithm
Files
- Codec/Encryption/OpenPGP/Arbitrary.hs +1/−1
- Codec/Encryption/OpenPGP/KeyInfo.hs +1/−1
- Codec/Encryption/OpenPGP/Types.hs +3/−3
- hOpenPGP.cabal +3/−3
Codec/Encryption/OpenPGP/Arbitrary.hs view
@@ -87,7 +87,7 @@ -- instance Arbitrary PubKeyAlgorithm where- arbitrary = elements [RSA, DSA, EC, ECDSA, DH]+ arbitrary = elements [RSA, DSA, ECDH, ECDSA, DH] instance Arbitrary EightOctetKeyId where arbitrary = vector 8 >>= return . EightOctetKeyId . B.pack
Codec/Encryption/OpenPGP/KeyInfo.hs view
@@ -30,7 +30,7 @@ pkalgoAbbrev ElgamalEncryptOnly = "g" pkalgoAbbrev DeprecatedRSAEncryptOnly = "-" pkalgoAbbrev DeprecatedRSASignOnly = "_"-pkalgoAbbrev EC = "e"+pkalgoAbbrev ECDH = "e" pkalgoAbbrev ECDSA = "E" pkalgoAbbrev ForbiddenElgamal = "f" pkalgoAbbrev DH = "d"
Codec/Encryption/OpenPGP/Types.hs view
@@ -228,7 +228,7 @@ | DeprecatedRSASignOnly | ElgamalEncryptOnly | DSA- | EC+ | ECDH | ECDSA | ForbiddenElgamal | DH@@ -247,7 +247,7 @@ fromFVal DeprecatedRSASignOnly = 3 fromFVal ElgamalEncryptOnly = 16 fromFVal DSA = 17- fromFVal EC = 18+ fromFVal ECDH = 18 fromFVal ECDSA = 19 fromFVal ForbiddenElgamal = 20 fromFVal DH = 21@@ -257,7 +257,7 @@ toFVal 3 = DeprecatedRSASignOnly toFVal 16 = ElgamalEncryptOnly toFVal 17 = DSA- toFVal 18 = EC+ toFVal 18 = ECDH toFVal 19 = ECDSA toFVal 20 = ForbiddenElgamal toFVal 21 = DH
hOpenPGP.cabal view
@@ -1,5 +1,5 @@ Name: hOpenPGP-Version: 1.5.1+Version: 1.5.2 Synopsis: native Haskell implementation of OpenPGP (RFC4880) Description: native Haskell implementation of OpenPGP (RFC4880) Homepage: http://floss.scru.org/hOpenPGP/@@ -173,7 +173,7 @@ , bzlib , cereal , cereal-conduit >= 0.6 && < 0.8- , conduit >= 0.5 && < 1.2+ , conduit >= 0.5 && < 1.3 , conduit-extra >= 1.1 , containers , crypto-cipher-types@@ -255,4 +255,4 @@ source-repository this type: git location: git://git.debian.org/users/clint/hOpenPGP.git- tag: v1.5.1+ tag: v1.5.2