Searched refs:keyBitLength (Results 1 – 4 of 4) sorted by relevance
/freebsd/crypto/openssl/crypto/camellia/ |
H A 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[],
|
H A D | camellia.c | 286 int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, KEY_TABLE_TYPE k) in Camellia_Ekeygen() argument 295 if (keyBitLength != 128) { in Camellia_Ekeygen() 298 if (keyBitLength == 192) { in Camellia_Ekeygen() 317 if (keyBitLength == 128) { in Camellia_Ekeygen() 449 void Camellia_EncryptBlock(int keyBitLength, const u8 plaintext[], in Camellia_EncryptBlock() argument 452 Camellia_EncryptBlock_Rounds(keyBitLength == 128 ? 3 : 4, in Camellia_EncryptBlock() 502 void Camellia_DecryptBlock(int keyBitLength, const u8 ciphertext[], in Camellia_DecryptBlock() argument 505 Camellia_DecryptBlock_Rounds(keyBitLength == 128 ? 3 : 4, in Camellia_DecryptBlock()
|
/freebsd/sys/crypto/camellia/ |
H A D | camellia.h | 44 void Camellia_Ekeygen(const int keyBitLength, 48 void Camellia_EncryptBlock(const int keyBitLength, 53 void Camellia_DecryptBlock(const int keyBitLength,
|
H A D | camellia.c | 1246 Camellia_Ekeygen(const int keyBitLength, in Camellia_Ekeygen() argument 1250 KASSERT(keyBitLength == 128 || keyBitLength == 192 || keyBitLength == 256, in Camellia_Ekeygen() 1251 ("Invalid key size (%d).", keyBitLength)); in Camellia_Ekeygen() 1253 switch(keyBitLength) { in Camellia_Ekeygen() 1268 Camellia_EncryptBlock(const int keyBitLength, in Camellia_EncryptBlock() argument 1280 switch (keyBitLength) { in Camellia_EncryptBlock() 1300 Camellia_DecryptBlock(const int keyBitLength, in Camellia_DecryptBlock() argument 1312 switch (keyBitLength) { in Camellia_DecryptBlock()
|