summaryrefslogtreecommitdiff
path: root/kiki.hs
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2015-06-24 15:03:50 -0400
committerjoe <joe@jerkface.net>2015-06-24 15:03:50 -0400
commitdeb93b1eb227be52322201f038c059eb4832b61a (patch)
tree6f4265102b4dfcf6b6bc50ed24f11141dc882356 /kiki.hs
parent73bde742f0f452da91eb2dd9de9a954fc33c28a8 (diff)
Removed unimplemented (-public) documentation for --keypairs and --wallets.
Diffstat (limited to 'kiki.hs')
-rw-r--r--kiki.hs12
1 files changed, 7 insertions, 5 deletions
diff --git a/kiki.hs b/kiki.hs
index 0c38343..2f8275d 100644
--- a/kiki.hs
+++ b/kiki.hs
@@ -747,7 +747,8 @@ documentAutoSignFlag bExport bImport bSecret =
747 ," 'tor' subkey corresponding to the address HOSTNAME.onion." 747 ," 'tor' subkey corresponding to the address HOSTNAME.onion."
748 ,""] 748 ,""]
749documentKeyPairsOption :: Bool -> Bool -> Bool -> [String] 749documentKeyPairsOption :: Bool -> Bool -> Bool -> [String]
750documentKeyPairsOption bExport bImport bSecret = 750documentKeyPairsOption bExport bImport False = []
751documentKeyPairsOption bExport bImport bSecret@True =
751 [" --keypairs [KEYSPEC ...]" 752 [" --keypairs [KEYSPEC ...]"
752 ," A keypair is a secret key coupled with it's corresponding public" 753 ," A keypair is a secret key coupled with it's corresponding public"
753 ," key, both of which are ordinarily stored in a single file in PEM" 754 ," key, both of which are ordinarily stored in a single file in PEM"
@@ -766,7 +767,7 @@ documentKeyPairsOption bExport bImport bSecret =
766 ," creating the PEM file for import." 767 ," creating the PEM file for import."
767 ,"" 768 ,""
768 ] ++ afterSecond 769 ] ++ afterSecond
769 (True,True,False) -> -- sync-public 770 (True,True,False) -> -- sync-public NOT-IMPLEMENTED
770 [" This option specifies the paths of PEM files, of both the" 771 [" This option specifies the paths of PEM files, of both the"
771 ," public and private variety, which either currently contain" 772 ," public and private variety, which either currently contain"
772 ," public keys to be imported, or lack public keys to be exported." 773 ," public keys to be imported, or lack public keys to be exported."
@@ -789,7 +790,7 @@ documentKeyPairsOption bExport bImport bSecret =
789 ," to your OpenGPG keyring will not be modified by this command." 790 ," to your OpenGPG keyring will not be modified by this command."
790 ,"" 791 ,""
791 ] ++ afterSecond 792 ] ++ afterSecond
792 (False,True,False) -> -- import-public 793 (False,True,False) -> -- import-public NOT-IMPLEMENTED
793 [" This option specifies the paths of PEM files, of both the" 794 [" This option specifies the paths of PEM files, of both the"
794 ," public and private variety, which either currently contain" 795 ," public and private variety, which either currently contain"
795 ," contain keys to be imported. If your working key has no subkey" 796 ," contain keys to be imported. If your working key has no subkey"
@@ -813,7 +814,7 @@ documentKeyPairsOption bExport bImport bSecret =
813 ," OpenGPG keyring." 814 ," OpenGPG keyring."
814 ,"" 815 ,""
815 ] ++ afterSecond 816 ] ++ afterSecond
816 (True,False,False) -> -- export-public 817 (True,False,False) -> -- export-public NOT-IMPLEMENTED
817 [" This option specifies the paths of PEM files, of the private or" 818 [" This option specifies the paths of PEM files, of the private or"
818 ," public variety, which lack public keys to be exported. Unlike" 819 ," public variety, which lack public keys to be exported. Unlike"
819 ," the export-secret command, this command leaves no possibility" 820 ," the export-secret command, this command leaves no possibility"
@@ -881,7 +882,8 @@ documentKeyRingsOption bExport bImport bSecret =
881 ] 882 ]
882 883
883documentWalletsOption :: Bool -> Bool -> Bool -> [String] 884documentWalletsOption :: Bool -> Bool -> Bool -> [String]
884documentWalletsOption bExport bImport bSecret = 885documentWalletsOption bExport bImport False = []
886documentWalletsOption bExport bImport True =
885 [" --wallets [FILE ...]" 887 [" --wallets [FILE ...]"
886 ," Provide wallet files with secret crypto-coin keys in Wallet" 888 ," Provide wallet files with secret crypto-coin keys in Wallet"
887 ," Import Format. The keys will be treated as subkeys of your" 889 ," Import Format. The keys will be treated as subkeys of your"