mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Add Camellia. Do not enable this if you are not doing interop
testing. It is not (yet) legal OpenPGP, is not interop tested yet (obviously), and it's a great way to lose your data. Just don't do it.
This commit is contained in:
parent
15e9a73988
commit
7cf79c128a
11 changed files with 1763 additions and 9 deletions
|
@ -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*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue