crypto-pubkey-types 0.3.0 → 0.3.1
raw patch · 2 files changed
+2/−2 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
Crypto/Types/PubKey/RSA.hs view
@@ -116,7 +116,7 @@ instance ASN1Object KeyPair where toASN1 (KeyPair pkey) = toASN1 pkey- fromASN1 = fmap (\(k,s) -> (KeyPair k, s)) . fromASN1+ fromASN1 = either Left (\(k,s) -> Right (KeyPair k, s)) . fromASN1 -- | Public key of a RSA KeyPair toPublicKey :: KeyPair -> PublicKey
crypto-pubkey-types.cabal view
@@ -1,5 +1,5 @@ Name: crypto-pubkey-types-Version: 0.3.0+Version: 0.3.1 Description: Generic cryptography public keys algorithm types License: BSD3 License-file: LICENSE