diff options
author | Werner Koch <[email protected]> | 2010-12-02 15:49:02 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-12-02 15:49:02 +0000 |
commit | fcb5f7d08f25a2ca962b1f9ad7dbb332cc241f38 (patch) | |
tree | 19982dc1f1c8a0c4a88ca4e06974d70fc47caad9 /common/audit.c | |
parent | Describe new log facilities. (diff) | |
download | gnupg-fcb5f7d08f25a2ca962b1f9ad7dbb332cc241f38.tar.gz gnupg-fcb5f7d08f25a2ca962b1f9ad7dbb332cc241f38.zip |
s/AES/AES128/ in diagnostics and --list-config
Diffstat (limited to 'common/audit.c')
-rw-r--r-- | common/audit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/audit.c b/common/audit.c index 02a0a2b22..38d0c0c3d 100644 --- a/common/audit.c +++ b/common/audit.c @@ -769,7 +769,7 @@ proc_type_encrypt (audit_ctx_t ctx) { algo = gcry_cipher_map_name (item->string); if (algo) - writeout_rem (ctx, _("algorithm: %s"), gcry_cipher_algo_name (algo)); + writeout_rem (ctx, _("algorithm: %s"), gnupg_cipher_algo_name (algo)); else if (item->string && !strcmp (item->string, "1.2.840.113549.3.2")) writeout_rem (ctx, _("unsupported algorithm: %s"), "RC2"); else if (item->string) @@ -909,14 +909,14 @@ proc_type_decrypt (audit_ctx_t ctx) algo = item? item->intvalue : 0; writeout_li (ctx, algo?"Yes":"No", "%s", _("Encryption algorithm supported")); if (algo) - writeout_rem (ctx, _("algorithm: %s"), gcry_cipher_algo_name (algo)); + writeout_rem (ctx, _("algorithm: %s"), gnupg_cipher_algo_name (algo)); item = find_log_item (ctx, AUDIT_BAD_DATA_CIPHER_ALGO, 0); if (item && item->string) { algo = gcry_cipher_map_name (item->string); if (algo) - writeout_rem (ctx, _("algorithm: %s"), gcry_cipher_algo_name (algo)); + writeout_rem (ctx, _("algorithm: %s"), gnupg_cipher_algo_name (algo)); else if (item->string && !strcmp (item->string, "1.2.840.113549.3.2")) writeout_rem (ctx, _("unsupported algorithm: %s"), "RC2"); else if (item->string) |