Home | History | Annotate | Download | only in aes

Lines Matching defs:kek

143 int AES_wrap_unwrap_test(const unsigned char *kek, int keybits,
155 if (AES_set_encrypt_key(kek, keybits, &wctx))
164 if (AES_set_decrypt_key(kek, keybits, &wctx))
188 static const unsigned char kek[] = {
244 ret = AES_wrap_unwrap_test(kek, 128, NULL, e1, key, 16);
246 ret = AES_wrap_unwrap_test(kek, 192, NULL, e2, key, 16);
248 ret = AES_wrap_unwrap_test(kek, 256, NULL, e3, key, 16);
250 ret = AES_wrap_unwrap_test(kek, 192, NULL, e4, key, 24);
252 ret = AES_wrap_unwrap_test(kek, 256, NULL, e5, key, 24);
254 ret = AES_wrap_unwrap_test(kek, 256, NULL, e6, key, 32);