diff options
author | Werner Koch <[email protected]> | 2011-02-03 19:59:01 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2011-02-03 19:59:01 +0000 |
commit | 5667e332909740fab85d095eb8f96ed2188ece6a (patch) | |
tree | a5ded1e88bab21b6b3b6226a5adceca2562d7ea4 /common/status.h | |
parent | Relax mailbox name checking. Fixes bug#1315. (diff) | |
download | gnupg-5667e332909740fab85d095eb8f96ed2188ece6a.tar.gz gnupg-5667e332909740fab85d095eb8f96ed2188ece6a.zip |
Add a DECRYPTION_INFO status.
DECRYPTION_INFO <mdc_method> <sym_algo>
Print information about the symmetric encryption algorithm and
the MDC method. This will be emitted even if the decryption
fails.
Diffstat (limited to 'common/status.h')
-rw-r--r-- | common/status.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/common/status.h b/common/status.h index 0533c4a92..434ff977d 100644 --- a/common/status.h +++ b/common/status.h @@ -20,7 +20,7 @@ #ifndef GNUPG_COMMON_STATUS_H #define GNUPG_COMMON_STATUS_H -enum +enum { STATUS_ENTER, STATUS_LEAVE, @@ -39,7 +39,7 @@ enum STATUS_TRUST_MARGINAL, STATUS_TRUST_FULLY, STATUS_TRUST_ULTIMATE, - + STATUS_NEED_PASSPHRASE, STATUS_VALIDSIG, STATUS_SIG_ID, @@ -49,6 +49,7 @@ enum STATUS_NO_PUBKEY, STATUS_NO_SECKEY, STATUS_NEED_PASSPHRASE_SYM, + STATUS_DECRYPTION_INFO, STATUS_DECRYPTION_FAILED, STATUS_DECRYPTION_OKAY, STATUS_MISSING_PASSPHRASE, @@ -58,20 +59,20 @@ enum STATUS_ERRMDC, STATUS_IMPORTED, STATUS_IMPORT_OK, - STATUS_IMPORT_PROBLEM, + STATUS_IMPORT_PROBLEM, STATUS_IMPORT_RES, STATUS_IMPORT_CHECK, STATUS_FILE_START, STATUS_FILE_DONE, STATUS_FILE_ERROR, - + STATUS_BEGIN_DECRYPTION, STATUS_END_DECRYPTION, STATUS_BEGIN_ENCRYPTION, STATUS_END_ENCRYPTION, STATUS_BEGIN_SIGNING, - + STATUS_DELETE_PROBLEM, STATUS_GET_BOOL, |