diff options
Diffstat (limited to 'cipher/dynload.h')
-rw-r--r-- | cipher/dynload.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cipher/dynload.h b/cipher/dynload.h index a839a91b3..78f41c644 100644 --- a/cipher/dynload.h +++ b/cipher/dynload.h @@ -20,5 +20,12 @@ #ifndef G10_CIPHER_DYNLOAD_H #define G10_CIPHER_DYNLOAD_H +const char * +enum_gnupgext_ciphers( void **enum_context, int *algo, + size_t *keylen, size_t *blocksize, size_t *contextsize, + void (**setkey)( void *c, byte *key, unsigned keylen ), + void (**encrypt)( void *c, byte *outbuf, byte *inbuf ), + void (**decrypt)( void *c, byte *outbuf, byte *inbuf ) + ); #endif /*G10_CIPHER_DYNLOAD_H*/ |