diff options
author | David Shaw <[email protected]> | 2004-11-29 21:14:18 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-11-29 21:14:18 +0000 |
commit | 0f8db18dc13f5f3a06ff1e1aa723e718be5f6111 (patch) | |
tree | b0d6b619fed9c794e8b10fcffb749c2697c9eec5 | |
parent | * export.c (do_export_stream): Allow export-minimal to work with secret (diff) | |
download | gnupg-0f8db18dc13f5f3a06ff1e1aa723e718be5f6111.tar.gz gnupg-0f8db18dc13f5f3a06ff1e1aa723e718be5f6111.zip |
* cipher.h: Add PUBKEY_USAGE_UNKNOWN.
Diffstat (limited to '')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/cipher.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 09487d6eb..172b86011 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2004-11-29 David Shaw <[email protected]> + + * cipher.h: Add PUBKEY_USAGE_UNKNOWN. + 2004-11-03 Timo Schulz <[email protected]> * errors.h: Add w32_strerror prototype. diff --git a/include/cipher.h b/include/cipher.h index d71a088f8..41271eba6 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -50,6 +50,7 @@ #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 PUBKEY_USAGE_UNKNOWN 128 /* key has an unknown usage bit */ #define DIGEST_ALGO_MD5 1 #define DIGEST_ALGO_SHA1 2 |