diff options
author | Werner Koch <[email protected]> | 2000-10-18 15:06:45 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2000-10-18 15:06:45 +0000 |
commit | ee8a16b96edd1de5d0c6da2e80c60696958591a1 (patch) | |
tree | d13a1e8025286f383bb9fac7f3cc69fdb42c1be1 | |
parent | About to release 1.0.4 (diff) | |
download | gnupg-ee8a16b96edd1de5d0c6da2e80c60696958591a1.tar.gz gnupg-ee8a16b96edd1de5d0c6da2e80c60696958591a1.zip |
*** empty log message ***
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | g10/ChangeLog | 4 | ||||
-rw-r--r-- | g10/misc.c | 3 |
3 files changed, 8 insertions, 1 deletions
@@ -1 +1 @@ -1.0.4 +1.0.4a diff --git a/g10/ChangeLog b/g10/ChangeLog index 055c2de60..5b23c9747 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,7 @@ +2000-10-18 Werner Koch <[email protected]> + + * misc.c (print_cipher_algo_note): Don't print the nore for AES. + 2000-10-16 Werner Koch <[email protected]> * mainproc.c (do_proc_packets): Hack to fix the problem that diff --git a/g10/misc.c b/g10/misc.c index 317bdbdce..86802c0fa 100644 --- a/g10/misc.c +++ b/g10/misc.c @@ -224,6 +224,9 @@ print_cipher_algo_note( int algo ) || algo == CIPHER_ALGO_CAST5 || algo == CIPHER_ALGO_BLOWFISH || algo == CIPHER_ALGO_TWOFISH + || algo == CIPHER_ALGO_RIJNDAEL + || algo == CIPHER_ALGO_RIJNDAEL192 + || algo == CIPHER_ALGO_RIJNDAEL256 ) ; else { |