hOpenPGP 1.5 → 1.5.1
raw patch · 3 files changed
+6/−9 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Codec.Encryption.OpenPGP.Serialize: putTK' :: TK -> ByteString
+ Codec.Encryption.OpenPGP.Serialize: instance Serialize TK
Files
- Codec/Encryption/OpenPGP/KeyringParser.hs +0/−1
- Codec/Encryption/OpenPGP/Serialize.hs +4/−6
- hOpenPGP.cabal +2/−2
Codec/Encryption/OpenPGP/KeyringParser.hs view
@@ -25,7 +25,6 @@ ) where import Control.Applicative (many, (<$>), (<|>))-import Data.IxSet (empty, insert) import Data.Monoid (Monoid, (<>), mconcat) import Codec.Encryption.OpenPGP.Types
Codec/Encryption/OpenPGP/Serialize.hs view
@@ -6,7 +6,6 @@ module Codec.Encryption.OpenPGP.Serialize ( putSKAddendum , getSecretKey- , putTK' ) where import Control.Applicative ((<$>),(<*>))@@ -159,9 +158,9 @@ get = getSignaturePayload put = putSignaturePayload --- instance Serialize TK where--- get = undefined--- put = putTK+instance Serialize TK where+ get = undefined+ put = putTK getSigSubPacket :: Get SigSubPacket getSigSubPacket = do@@ -1220,8 +1219,7 @@ putWord8 pv putByteString bs -putTK' key = runPut $ putTK key-+putTK :: TK -> Put putTK key = do put (PublicKey (key^.tkKey._1)) mapM_ (put . Signature) (_tkRevs key)
hOpenPGP.cabal view
@@ -1,5 +1,5 @@ Name: hOpenPGP-Version: 1.5+Version: 1.5.1 Synopsis: native Haskell implementation of OpenPGP (RFC4880) Description: native Haskell implementation of OpenPGP (RFC4880) Homepage: http://floss.scru.org/hOpenPGP/@@ -255,4 +255,4 @@ source-repository this type: git location: git://git.debian.org/users/clint/hOpenPGP.git- tag: v1.5+ tag: v1.5.1