X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fcamellia%2Fcmll_misc.c;h=f44689124b4a64e0d682c2d27125a4c177e92043;hp=9d4dc2a9716dab0666b0414c2858a55a83063d33;hb=fd0ba77717c4fda075c9c9a6ff1e5975fdf76905;hpb=27f864e8acd4c495f94363af3074861576af303f 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); }