aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/blowfish.h
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/blowfish.h')
-rw-r--r--cipher/blowfish.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cipher/blowfish.h b/cipher/blowfish.h
index b1d65f36c..827baa141 100644
--- a/cipher/blowfish.h
+++ b/cipher/blowfish.h
@@ -26,9 +26,9 @@
const char *
blowfish_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_BLOWFISH_H*/