AES_Setkey
error = AES_Setkey(&ctx, key, klen);
int AES_Setkey(AES_CTX *, const uint8_t *, int);
AES_Setkey(&ctx->aesctx, key, 16);
AES_Setkey(&ctx->K, key, klen - AESCTR_NONCESIZE);
AES_Setkey(&ctx->ctx, K, K_len);
AES_Setkey(&ctx->ctx, K, K_len);
return AES_Setkey((AES_CTX *)sched, key, len);
if (AES_Setkey(&ctx->ac_key, key, len - AESCTR_NONCESIZE) != 0)
AES_Setkey(&ctx->aesctx, k->k_key, 16);