1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

See ChangeLog: Wed Feb 23 10:07:57 CET 2000 Werner Koch

This commit is contained in:
Werner Koch 2000-02-23 09:10:10 +00:00
parent c03e6ee0aa
commit 7ae8d22f9b
27 changed files with 10083 additions and 5231 deletions

View file

@ -1,3 +1,8 @@
Wed Feb 23 10:07:57 CET 2000 Werner Koch <wk@gnupg.de>
* twofish.c (twofish_get_info): Add some const to the casts. By Martin
Kahlert.
Mon Feb 14 14:30:20 CET 2000 Werner Koch <wk@gnupg.de>
(update_random_seed_file): Silently ignore update request when pool

View file

@ -987,11 +987,11 @@ twofish_get_info (int algo, size_t *keylen,
*keylen = algo==10? 256 : 128;
*blocksize = 16;
*contextsize = sizeof (TWOFISH_context);
*(int (**)(const TWOFISH_context*, byte*, unsigned))r_setkey
*(int (**)(const TWOFISH_context*, const byte*, unsigned))r_setkey
= twofish_setkey;
*(void (**)(const TWOFISH_context*, byte*, byte*))r_encrypt
*(void (**)(const TWOFISH_context*, byte*, const byte*))r_encrypt
= twofish_encrypt;
*(void (**)(const TWOFISH_context*, byte*, byte*))r_decrypt
*(void (**)(const TWOFISH_context*, byte*, const byte*))r_decrypt
= twofish_decrypt;
if( algo == 10 )