diff options
author | Werner Koch <[email protected]> | 2003-09-30 08:00:08 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2003-09-30 08:00:08 +0000 |
commit | 8062cb418a4757c603447fb5fad2d06bf54cadb3 (patch) | |
tree | c4290b18aed7add7b1355acd16b5d0876edc8ac3 /include/cipher.h | |
parent | 2003-09-28 Timo Schulz <[email protected]> (diff) | |
download | gnupg-8062cb418a4757c603447fb5fad2d06bf54cadb3.tar.gz gnupg-8062cb418a4757c603447fb5fad2d06bf54cadb3.zip |
* keygen.c (do_add_key_flags, parse_parameter_usage): Add support
the proposed AUTH key flag.
* getkey.c (fixup_uidnode, merge_selfsigs_main)
(merge_selfsigs_subkey, premerge_public_with_secret): Ditto.
* keylist.c (print_capabilities): Ditto.
* parse-packet.c (parse_key): Allow to parse the divert-to-card
S2K mode.
* build-packet.c (do_secret_key): Handle divert-to-card S2K
* seckey-cert.c (is_secret_key_protected): Ditto.
(check_secret_key): Ditto.
* keygen.c (do_ask_passphrase): Renamed from ask_passphrase.
* passphrase.c (ask_passphrase): New.
Diffstat (limited to '')
-rw-r--r-- | include/cipher.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/cipher.h b/include/cipher.h index e450c1449..1a29c715c 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -54,6 +54,7 @@ #define PUBKEY_USAGE_SIG 1 /* key is good for signatures */ #define PUBKEY_USAGE_ENC 2 /* key is good for encryption */ #define PUBKEY_USAGE_CERT 4 /* key is also good to certify other keys*/ +#define PUBKEY_USAGE_AUTH 8 /* key is good for authentication */ #define DIGEST_ALGO_MD5 1 #define DIGEST_ALGO_SHA1 2 |