diff options
Diffstat (limited to 'g10')
-rw-r--r-- | g10/ChangeLog | 4 | ||||
-rw-r--r-- | g10/misc.c | 3 |
2 files changed, 7 insertions, 0 deletions
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 { |