summaryrefslogtreecommitdiff
path: root/KeyRing.hs
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2015-06-21 19:03:49 -0400
committerjoe <joe@jerkface.net>2015-06-21 19:03:49 -0400
commit5f2312a9a8b2a7cb9b4d523fc54cd00f153a3bf3 (patch)
tree176aabda41180d63cdce88404ce278b0d29e697c /KeyRing.hs
parent3989ea283124745ab378c440459138f66602dc52 (diff)
Started support for deleting subkeys
Diffstat (limited to 'KeyRing.hs')
-rw-r--r--KeyRing.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/KeyRing.hs b/KeyRing.hs
index 75e19b3..30e0382 100644
--- a/KeyRing.hs
+++ b/KeyRing.hs
@@ -399,6 +399,9 @@ data Transform =
399 -- A tor-style UID is one of the following form: 399 -- A tor-style UID is one of the following form:
400 -- 400 --
401 -- > Anonymous <root@HOSTNAME.onion> 401 -- > Anonymous <root@HOSTNAME.onion>
402 | DeleteSubKey String
403 -- ^ Delete the subkey specified by the given fingerprint and any
404 -- associated signatures on that key.
402 deriving (Eq,Ord) 405 deriving (Eq,Ord)
403 406
404-- | This type describes an idempotent transformation (merge or import) on a 407-- | This type describes an idempotent transformation (merge or import) on a
@@ -624,6 +627,7 @@ data KikiReportAction =
624 | UnableToExport KeyAlgorithm String 627 | UnableToExport KeyAlgorithm String
625 | FailedFileWrite 628 | FailedFileWrite
626 | HostsDiff ByteString 629 | HostsDiff ByteString
630 | DeletedPacket Packet
627 deriving Show 631 deriving Show
628 632
629uncamel :: String -> String 633uncamel :: String -> String