diff options
Diffstat (limited to 'cipher/des.h')
-rw-r--r-- | cipher/des.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cipher/des.h b/cipher/des.h index cf2f320d8..f68560686 100644 --- a/cipher/des.h +++ b/cipher/des.h @@ -26,9 +26,9 @@ const char * des_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_DES_H*/ |