1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-21 14:47:03 +01:00

* cipher.c (setup_cipher_table): May as well call Rijndael AES at this

point.
This commit is contained in:
David Shaw 2004-01-17 03:06:50 +00:00
parent 65f759ae68
commit 99f6f81769
2 changed files with 7 additions and 4 deletions

View File

@ -1,5 +1,8 @@
2004-01-16 David Shaw <dshaw@jabberwocky.com> 2004-01-16 David Shaw <dshaw@jabberwocky.com>
* cipher.c (setup_cipher_table): May as well call Rijndael AES at
this point.
* pubkey.c (setup_pubkey_table), elgamal.c (sign, verify, * pubkey.c (setup_pubkey_table), elgamal.c (sign, verify,
test_keys, elg_sign, elg_verify, elg_get_info): Remove the last test_keys, elg_sign, elg_verify, elg_get_info): Remove the last
bits of Elgamal type 20 support. bits of Elgamal type 20 support.
@ -23,7 +26,7 @@
* blowfish.c, twofish.c [__riscos__]: Removal of unnecessary * blowfish.c, twofish.c [__riscos__]: Removal of unnecessary
#ifdef __riscos__ sections. #ifdef __riscos__ sections.
2003-12-17 David Shaw <dshaw@localhost.localdomain> 2003-12-17 David Shaw <dshaw@jabberwocky.com>
* dsa.h, dsa.c (dsa_verify), elgamal.h, elgamal.c (elg_verify), * dsa.h, dsa.c (dsa_verify), elgamal.h, elgamal.c (elg_verify),
rsa.h, rsa.c (rsa_verify), pubkey.c (dummy_verify, pubkey_verify): rsa.h, rsa.c (rsa_verify), pubkey.c (dummy_verify, pubkey_verify):

View File

@ -88,7 +88,7 @@ setup_cipher_table(void)
int i=0; int i=0;
#ifdef USE_AES #ifdef USE_AES
cipher_table[i].algo = CIPHER_ALGO_RIJNDAEL; cipher_table[i].algo = CIPHER_ALGO_AES;
cipher_table[i].name = rijndael_get_info( cipher_table[i].algo, cipher_table[i].name = rijndael_get_info( cipher_table[i].algo,
&cipher_table[i].keylen, &cipher_table[i].keylen,
&cipher_table[i].blocksize, &cipher_table[i].blocksize,
@ -99,7 +99,7 @@ setup_cipher_table(void)
if( !cipher_table[i].name ) if( !cipher_table[i].name )
BUG(); BUG();
i++; i++;
cipher_table[i].algo = CIPHER_ALGO_RIJNDAEL192; cipher_table[i].algo = CIPHER_ALGO_AES192;
cipher_table[i].name = rijndael_get_info( cipher_table[i].algo, cipher_table[i].name = rijndael_get_info( cipher_table[i].algo,
&cipher_table[i].keylen, &cipher_table[i].keylen,
&cipher_table[i].blocksize, &cipher_table[i].blocksize,
@ -110,7 +110,7 @@ setup_cipher_table(void)
if( !cipher_table[i].name ) if( !cipher_table[i].name )
BUG(); BUG();
i++; i++;
cipher_table[i].algo = CIPHER_ALGO_RIJNDAEL256; cipher_table[i].algo = CIPHER_ALGO_AES256;
cipher_table[i].name = rijndael_get_info( cipher_table[i].algo, cipher_table[i].name = rijndael_get_info( cipher_table[i].algo,
&cipher_table[i].keylen, &cipher_table[i].keylen,
&cipher_table[i].blocksize, &cipher_table[i].blocksize,