diff options
Diffstat (limited to '')
-rw-r--r-- | cipher/blowfish.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/cipher/blowfish.h b/cipher/blowfish.h index bed034c73..46e302288 100644 --- a/cipher/blowfish.h +++ b/cipher/blowfish.h @@ -41,7 +41,7 @@ twofish_get_info( int algo, size_t *keylen, void (**decryptf)( void *c, byte *outbuf, byte *inbuf ) ); -/* this is just a kludge for the time we have not yet chnaged the cipher +/* this is just a kludge for the time we have not yet changed the cipher * stuff to the scheme we use for random and digests */ const char * rijndael_get_info( int algo, size_t *keylen, @@ -51,4 +51,12 @@ rijndael_get_info( int algo, size_t *keylen, void (**decryptf)( void *c, byte *outbuf, byte *inbuf ) ); +const char * +idea_get_info( int algo, size_t *keylen, + size_t *blocksize, size_t *contextsize, + int (**setkeyf)( void *c, byte *key, unsigned keylen ), + void (**encryptf)( void *c, byte *outbuf, byte *inbuf ), + void (**decryptf)( void *c, byte *outbuf, byte *inbuf ) + ); + #endif /*G10_BLOWFISH_H*/ |