diff options
author | David Shaw <[email protected]> | 2002-11-25 04:11:02 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-11-25 04:11:02 +0000 |
commit | bd23076c5e52d8e48f2af1daff2da12fd3363697 (patch) | |
tree | ba83a3e0a5a268243227071d5b22fff43e836a56 | |
parent | * sign.c (hash_for): If --digest-algo is not set, but (diff) | |
download | gnupg-bd23076c5e52d8e48f2af1daff2da12fd3363697.tar.gz gnupg-bd23076c5e52d8e48f2af1daff2da12fd3363697.zip |
* mainproc.c (proc_encrypted): Use --s2k-digest-algo for passphrase
mangling rather than --digest-algo.
-rw-r--r-- | g10/ChangeLog | 3 | ||||
-rw-r--r-- | g10/mainproc.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index bb3101ebd..55f386e63 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,5 +1,8 @@ 2002-11-24 David Shaw <[email protected]> + * mainproc.c (proc_encrypted): Use --s2k-digest-algo for + passphrase mangling rather than --digest-algo. + * sign.c (hash_for): If --digest-algo is not set, but --personal-digest-preferences is, then use the first hash algorithm in the personal list. If the signing algorithm is DSA, diff --git a/g10/mainproc.c b/g10/mainproc.c index c07a377eb..49fd217cb 100644 --- a/g10/mainproc.c +++ b/g10/mainproc.c @@ -477,7 +477,7 @@ proc_encrypted( CTX c, PACKET *pkt ) } else { algo = CIPHER_ALGO_IDEA; - if (!opt.def_digest_algo) { + if (!opt.s2k_digest_algo) { /* If no digest is given we assume MD5 */ s2kbuf.mode = 0; s2kbuf.hash_algo = DIGEST_ALGO_MD5; |