AES_CTX
AES_CTX ctx;
AES_CTX ac_key;
AES_Setkey(AES_CTX *ctx, const uint8_t *key, int len)
AES_Encrypt_ECB(AES_CTX *ctx, const uint8_t *src,
AES_Decrypt_ECB(AES_CTX *ctx, const uint8_t *src,
AES_Encrypt(AES_CTX *ctx, const uint8_t *src, uint8_t *dst)
AES_Decrypt(AES_CTX *ctx, const uint8_t *src, uint8_t *dst)
int AES_Setkey(AES_CTX *, const uint8_t *, int);
void AES_Encrypt(AES_CTX *, const uint8_t *, uint8_t *);
void AES_Decrypt(AES_CTX *, const uint8_t *, uint8_t *);
void AES_Encrypt_ECB(AES_CTX *, const uint8_t *, uint8_t *, size_t);
void AES_Decrypt_ECB(AES_CTX *, const uint8_t *, uint8_t *, size_t);
AES_CTX aesctx;
AES_CTX K;
AES_CTX ctx;
AES_CTX ac_key;
sizeof(AES_CTX),
AES_Encrypt((AES_CTX *)key, blk, blk);
AES_Decrypt((AES_CTX *)key, blk, blk);
return AES_Setkey((AES_CTX *)sched, key, len);
AES_CTX aesctx;
ieee80211_ccmp_phase1(AES_CTX *ctx, const struct ieee80211_frame *wh,