Lines Matching defs:keyBits
104 const uint32_t cipherKey[], int keyBits);
106 const uint32_t cipherKey[], int keyBits);
114 const uint32_t cipherKey[], uint64_t keyBits);
116 const uint32_t cipherKey[], uint64_t keyBits);
873 * keyBits AES key size (128, 192, or 256 bits)
877 int keyBits)
887 if (keyBits == 128) {
910 if (keyBits == 192) {
936 if (keyBits == 256) {
984 * keyBits AES key size (128, 192, or 256 bits)
987 rijndael_key_setup_enc(uint64_t rk[], const uint32_t cipherKey[], int keyBits)
995 Nr = rijndael_key_setup_enc_raw(rk1, cipherKey, keyBits);
1025 * keyBits AES key size (128, 192, or 256 bits)
1029 int keyBits)
1035 Nr = rijndael_key_setup_enc_raw(rk, cipherKey, keyBits);
1080 * keyBits AES key size (128, 192, or 256 bits)
1083 rijndael_key_setup_dec(uint64_t rk[], const uint32_t cipherKey[], int keyBits)
1091 Nr = rijndael_key_setup_dec_raw(rk1, cipherKey, keyBits);
1116 * keyBits AES key size (128, 192, or 256 bits)
1138 * keyBits AES key size (128, 192, or 256 bits)
1228 * keyBits AES key size (128, 192, or 256 bits)
1231 rijndael_key_setup_dec(uint32_t rk[], const uint32_t cipherKey[], int keyBits)
1237 Nr = rijndael_key_setup_enc_raw(rk, cipherKey, keyBits);
1290 * keyBits AES key size (128, 192, or 256 bits)
1564 * keyBits AES key size (128, 192, or 256 bits)
1569 aes_init_keysched(const uint8_t *cipherKey, uint_t keyBits, void *keysched)
1578 switch (keyBits) {
1595 keysize = CRYPTO_BITS2BYTES(keyBits);
1622 aes_setupkeys(newbie, keyarr.ka32, keyBits);