summaryrefslogtreecommitdiffstats
path: root/functions.h
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2005-01-28 13:17:22 +0000
committerWerner Koch <wk@gnupg.org>2005-01-28 13:17:22 +0000
commit4bb5db92a89158cc45c3480f2be62d0b435c9a4e (patch)
treeb4cce50c4807558e08925f72ed0f7c3b532cb692 /functions.h
parent1cf833351597eb6f991ac0e17a634e8328423014 (diff)
gpgme integration. See documentation for $crypt_use_gpgme,
and http://www.gnupg.org/aegypten2/.
Diffstat (limited to 'functions.h')
-rw-r--r--functions.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/functions.h b/functions.h
index a3021126..d1a7ca10 100644
--- a/functions.h
+++ b/functions.h
@@ -400,11 +400,20 @@ struct binding_t OpPgp[] = {
{ NULL, 0, NULL }
};
-/* Don't know an useful key binding yet. But. just in case, adding this already */
+
+
+/* When using the GPGME based backend we have some useful functions
+ for the SMIME menu. */
struct binding_t OpSmime[] = {
+#ifdef CRYPT_BACKEND_GPGME
+ { "verify-key", OP_VERIFY_KEY, "c" },
+ { "view-name", OP_VIEW_ID, "%" },
+#endif
{ NULL, 0, NULL }
};
+
+
#ifdef MIXMASTER
struct binding_t OpMix[] = {
{ "accept", OP_MIX_USE, M_ENTER_S },