aboutsummaryrefslogtreecommitdiffstats
path: root/g10/sign.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2002-11-24 00:50:14 +0000
committerDavid Shaw <[email protected]>2002-11-24 00:50:14 +0000
commit0cd879cd9c8ef9363aa97e3d30090bd06fc3d215 (patch)
tree06b085f8c8adfd330b269c374c0a5a60827ddb9d /g10/sign.c
parent* gpg.sgml: Add an interoperability section. (diff)
downloadgnupg-0cd879cd9c8ef9363aa97e3d30090bd06fc3d215.tar.gz
gnupg-0cd879cd9c8ef9363aa97e3d30090bd06fc3d215.zip
* encode.c (encode_simple), passphrase.c (passphrase_to_dek), sign.c
(sign_symencrypt_file): Use --s2k-digest-algo for passphrase mangling rather than --digest-algo.
Diffstat (limited to 'g10/sign.c')
-rw-r--r--g10/sign.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/g10/sign.c b/g10/sign.c
index 2c85f232a..047dd13fc 100644
--- a/g10/sign.c
+++ b/g10/sign.c
@@ -1022,8 +1022,7 @@ sign_symencrypt_file (const char *fname, STRLIST locusr)
/* prepare key */
s2k = m_alloc_clear( sizeof *s2k );
s2k->mode = opt.rfc1991? 0:opt.s2k_mode;
- s2k->hash_algo = opt.def_digest_algo ? opt.def_digest_algo
- : opt.s2k_digest_algo;
+ s2k->hash_algo = opt.s2k_digest_algo;
algo = opt.def_cipher_algo ? opt.def_cipher_algo : opt.s2k_cipher_algo;
if (!opt.quiet || !opt.batch)