diff options
Diffstat (limited to 'cipher/algorithms.h')
-rw-r--r-- | cipher/algorithms.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cipher/algorithms.h b/cipher/algorithms.h index 65346fea3..9ef81645b 100644 --- a/cipher/algorithms.h +++ b/cipher/algorithms.h @@ -138,4 +138,12 @@ idea_get_info( int algo, size_t *keylen, void (**decryptf)( void *c, byte *outbuf, const byte *inbuf ) ); +const char * +camellia_get_info(int algo, size_t *keylen, + size_t *blocksize, size_t *contextsize, + int (**setkeyf)( void *c, const byte *key, unsigned keylen ), + void (**encryptf)( void *c, byte *outbuf, const byte *inbuf), + void (**decryptf)( void *c, byte *outbuf, const byte *inbuf ) + ); + #endif /*GNUPG_ALGORITHMS_H*/ |