diff options
Diffstat (limited to '')
-rw-r--r-- | cipher/cast5.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cipher/cast5.h b/cipher/cast5.h index df7f16519..798eaa23f 100644 --- a/cipher/cast5.h +++ b/cipher/cast5.h @@ -25,9 +25,9 @@ const char * cast5_get_info( int algo, size_t *keylen, size_t *blocksize, size_t *contextsize, - int (**setkey)( void *c, byte *key, unsigned keylen ), - void (**encrypt)( void *c, byte *outbuf, byte *inbuf ), - void (**decrypt)( void *c, byte *outbuf, byte *inbuf ) + 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_CAST5_H*/ |