Lines Matching defs:key
47 * aes_keysched_enc(rk, key, keybytes)
49 * Compute the standard AES encryption key schedule, expanding a
50 * 16-, 24-, or 32-byte key into 44, 52, or 60 32-bit round keys
51 * for encryption. Returns the number of rounds for the key of
55 aes_keysched_enc(uint32_t *rk, const void *key, size_t keybytes)
59 return br_aes_ct64_keysched_stdenc(rk, key, keybytes);
61 return br_aes_ct_keysched_stdenc(rk, key, keybytes);
66 * aes_keysched_dec(rk, key, keybytes)
68 * Compute the standard AES decryption key schedule, expanding a
69 * 16-, 24-, or 32-byte key into 44, 52, or 60 32-bit round keys
71 * of rounds for the key of this length.
74 aes_keysched_dec(uint32_t *rk, const void *key, size_t keybytes)
78 return br_aes_ct64_keysched_stddec(rk, key, keybytes);
80 return br_aes_ct_keysched_stddec(rk, key, keybytes);