summaryrefslogtreecommitdiffstats
path: root/crypto/camellia/cmll_misc.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2008-10-28 12:13:52 +0000
committerAndy Polyakov <appro@openssl.org>2008-10-28 12:13:52 +0000
commit436bdcff4ec96d086b9f4e80accb314e4a4514e1 (patch)
treec03fcc73723f5a2e3955ef1b122c3bb47b8e0694 /crypto/camellia/cmll_misc.c
parent27f864e8acd4c495f94363af3074861576af303f (diff)
Harmonize Camellia API with version 1.x.
Diffstat (limited to 'crypto/camellia/cmll_misc.c')
-rw-r--r--crypto/camellia/cmll_misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/camellia/cmll_misc.c b/crypto/camellia/cmll_misc.c
index 9d4dc2a971..f44689124b 100644
--- a/crypto/camellia/cmll_misc.c
+++ b/crypto/camellia/cmll_misc.c
@@ -69,11 +69,11 @@ int Camellia_set_key(const unsigned char *userKey, const int bits,
void Camellia_encrypt(const unsigned char *in, unsigned char *out,
const CAMELLIA_KEY *key)
{
- Camellia_EncryptBlock(key->grand_rounds, in , key->u.rd_key , out);
+ Camellia_EncryptBlock_Rounds(key->grand_rounds, in , key->u.rd_key , out);
}
void Camellia_decrypt(const unsigned char *in, unsigned char *out,
const CAMELLIA_KEY *key)
{
- Camellia_DecryptBlock(key->grand_rounds, in , key->u.rd_key , out);
+ Camellia_DecryptBlock_Rounds(key->grand_rounds, in , key->u.rd_key , out);
}