summaryrefslogtreecommitdiff
path: root/cipher/cipher.c
diff options
context:
space:
mode:
authorDavid Shaw <dshaw@jabberwocky.com>2007-05-02 06:27:11 +0000
committerDavid Shaw <dshaw@jabberwocky.com>2007-05-02 06:27:11 +0000
commit7d186d66403cefb615a0f39016c54e5cfa4427c4 (patch)
tree70911078d79d38576ed600a79f49ee088b479b73 /cipher/cipher.c
parent9164a4caf8a00b4b4c38a1174ef2fed895f1ed99 (diff)
downloadlibgcrypt-7d186d66403cefb615a0f39016c54e5cfa4427c4.tar.gz
Add Camellia support.
Diffstat (limited to 'cipher/cipher.c')
-rw-r--r--cipher/cipher.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/cipher/cipher.c b/cipher/cipher.c
index f116503b..1538b4ce 100644
--- a/cipher/cipher.c
+++ b/cipher/cipher.c
@@ -75,6 +75,11 @@ static struct cipher_table_entry
#if USE_SEED
{ &_gcry_cipher_spec_seed, GCRY_CIPHER_SEED },
#endif
+#if USE_CAMELLIA
+ { &_gcry_cipher_spec_camellia128, GCRY_CIPHER_CAMELLIA128 },
+ { &_gcry_cipher_spec_camellia192, GCRY_CIPHER_CAMELLIA192 },
+ { &_gcry_cipher_spec_camellia256, GCRY_CIPHER_CAMELLIA256 },
+#endif
{ NULL }
};