diff options
author | Werner Koch <wk@gnupg.org> | 2014-03-27 16:33:40 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2014-03-27 16:33:40 +0100 |
commit | b6786cc3ec0bb582323adf94c2ee624bcfbeb466 (patch) | |
tree | 993061c71431929bf4a940727e2fb6cc12411a5d /g10/main.h | |
parent | Change some keyedit functions to allow printing to arbitrary streams. (diff) | |
download | gnupg2-b6786cc3ec0bb582323adf94c2ee624bcfbeb466.tar.xz gnupg2-b6786cc3ec0bb582323adf94c2ee624bcfbeb466.zip |
gpg: Add commands --quick-sign-key and --quick-lsign-key.
* g10/gpg.c (main): Add commands --quick-sign-key and
--quick-lsign-key.
* g10/keyedit.c (sign_uids): Add args FP and QUICK.
(keyedit_quick_sign): New.
(show_key_with_all_names): Add arg NOWARN.
Diffstat (limited to '')
-rw-r--r-- | g10/main.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/g10/main.h b/g10/main.h index ad1a9f682..ce77a839b 100644 --- a/g10/main.h +++ b/g10/main.h @@ -236,6 +236,8 @@ int delete_keys( strlist_t names, int secret, int allow_both ); void keyedit_menu (ctrl_t ctrl, const char *username, strlist_t locusr, strlist_t commands, int quiet, int seckey_check ); void keyedit_passwd (ctrl_t ctrl, const char *username); +void keyedit_quick_sign (ctrl_t ctrl, const char *fpr, + strlist_t uids, strlist_t locusr, int local); void show_basic_key_info (KBNODE keyblock); /*-- keygen.c --*/ |