summaryrefslogtreecommitdiff
path: root/lib/KeyRing.hs
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2016-08-29 16:05:04 -0400
committerjoe <joe@jerkface.net>2016-08-29 16:05:04 -0400
commit5c6d9d1a2810eba2772dcdbee255e11144e21176 (patch)
treed457d282f95ea60096ba002705de9e1b6d998256 /lib/KeyRing.hs
parent1eff837423de69ece2a85430a7ad433b7c1a504a (diff)
Added "encrypt" and "sign" keys to be generated.
Diffstat (limited to 'lib/KeyRing.hs')
-rw-r--r--lib/KeyRing.hs30
1 files changed, 15 insertions, 15 deletions
diff --git a/lib/KeyRing.hs b/lib/KeyRing.hs
index e084fcd..8a23ff9 100644
--- a/lib/KeyRing.hs
+++ b/lib/KeyRing.hs
@@ -585,21 +585,21 @@ keyflags _ = Nothing
585 585
586data PGPKeyFlags = 586data PGPKeyFlags =
587 Special 587 Special
588 | Vouch -- Signkey 588 | Vouch -- 0001 C -- Signkey
589 | Sign 589 | Sign -- 0010 S
590 | VouchSign 590 | VouchSign -- 0011
591 | Communication 591 | Communication -- 0100 E
592 | VouchCommunication 592 | VouchCommunication -- 0101
593 | SignCommunication 593 | SignCommunication -- 0110
594 | VouchSignCommunication 594 | VouchSignCommunication -- 0111
595 | Storage 595 | Storage -- 1000 E
596 | VouchStorage 596 | VouchStorage -- 1001
597 | SignStorage 597 | SignStorage -- 1010
598 | VouchSignStorage 598 | VouchSignStorage -- 1011
599 | Encrypt 599 | Encrypt -- 1100 E
600 | VouchEncrypt 600 | VouchEncrypt -- 1101
601 | SignEncrypt 601 | SignEncrypt -- 1110
602 | VouchSignEncrypt 602 | VouchSignEncrypt -- 1111
603 deriving (Eq,Show,Read,Enum) 603 deriving (Eq,Show,Read,Enum)
604 604
605 605