aboutsummaryrefslogtreecommitdiffstats
path: root/sm/gpgsm.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2009-05-18 17:38:34 +0000
committerWerner Koch <[email protected]>2009-05-18 17:38:34 +0000
commit387a51f9515fdfa26b5fa8bb22366844a315fd9c (patch)
tree026a801ad349e59e2e64c495a7478533cf627ecb /sm/gpgsm.c
parentChanged default algo and size. (diff)
downloadgnupg-387a51f9515fdfa26b5fa8bb22366844a315fd9c.tar.gz
gnupg-387a51f9515fdfa26b5fa8bb22366844a315fd9c.zip
New gpgsm server option no-encrypt-to.
Add caching for symkey encryption. Minor cleanups.
Diffstat (limited to '')
-rw-r--r--sm/gpgsm.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/sm/gpgsm.c b/sm/gpgsm.c
index 8a2a1c0b9..cb9aaab44 100644
--- a/sm/gpgsm.c
+++ b/sm/gpgsm.c
@@ -66,7 +66,6 @@ enum cmd_and_opt_values {
aDeleteKey,
aImport,
aVerify,
- aVerifyFiles,
aListExternalKeys,
aListChain,
aSendKeys,
@@ -191,7 +190,6 @@ static ARGPARSE_OPTS opts[] = {
ARGPARSE_c (aSym, "symmetric", N_("encryption only with symmetric cipher")),
ARGPARSE_c (aDecrypt, "decrypt", N_("decrypt data (default)")),
ARGPARSE_c (aVerify, "verify", N_("verify a signature")),
- ARGPARSE_c (aVerifyFiles, "verify-files", "@"),
ARGPARSE_c (aListKeys, "list-keys", N_("list keys")),
ARGPARSE_c (aListExternalKeys, "list-external-keys",
N_("list external keys")),
@@ -1711,10 +1709,6 @@ main ( int argc, char **argv)
}
break;
- case aVerifyFiles:
- log_error (_("this command has not yet been implemented\n"));
- break;
-
case aDecrypt:
{
FILE *fp = open_fwrite (opt.outfile?opt.outfile:"-");