Searched refs:keyBitLength (Results 1 – 2 of 2) sorted by relevance
/third_party/openssl/crypto/camellia/ |
D | cmll_local.h | 31 int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, 39 void Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[], 41 void Camellia_DecryptBlock(int keyBitLength, const u8 ciphertext[],
|
D | camellia.c | 280 int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, KEY_TABLE_TYPE k) in Camellia_Ekeygen() argument 289 if (keyBitLength != 128) { in Camellia_Ekeygen() 292 if (keyBitLength == 192) { in Camellia_Ekeygen() 311 if (keyBitLength == 128) { in Camellia_Ekeygen() 443 void Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[], in Camellia_EncryptBlock() argument 446 Camellia_EncryptBlock_Rounds(keyBitLength == 128 ? 3 : 4, in Camellia_EncryptBlock() 496 void Camellia_DecryptBlock(int keyBitLength, const u8 plaintext[], in Camellia_DecryptBlock() argument 499 Camellia_DecryptBlock_Rounds(keyBitLength == 128 ? 3 : 4, in Camellia_DecryptBlock()
|