Home | History | Annotate | Download | only in crypto

Lines Matching refs:actx

433 	AES_KEY actx;
438 if (AES_set_encrypt_key(kek, kek_len << 3, &actx))
440 res = AES_wrap_key(&actx, NULL, cipher, plain, n * 8);
441 OPENSSL_cleanse(&actx, sizeof(actx));
449 AES_KEY actx;
454 if (AES_set_decrypt_key(kek, kek_len << 3, &actx))
456 res = AES_unwrap_key(&actx, NULL, plain, cipher, (n + 1) * 8);
457 OPENSSL_cleanse(&actx, sizeof(actx));