Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching refs:kek

4  * - AES Key Wrap Algorithm (128-bit KEK) (RFC3394)
36 * aes_wrap - Wrap keys with AES Key Wrap Algorithm (128-bit KEK) (RFC3394)
37 * @kek: 16-octet Key encryption key (KEK)
44 int aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher)
57 ctx = aes_encrypt_init(kek, 16);
95 * aes_unwrap - Unwrap key with AES Key Wrap Algorithm (128-bit KEK) (RFC3394)
96 * @kek: Key encryption key (KEK)
103 int aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain)
114 ctx = aes_decrypt_init(kek, 16);