Searched refs:ae_ops (Results 1 – 1 of 1) sorted by relevance
| /optee_os/core/crypto/ |
| H A D | crypto.c | 398 static const struct crypto_authenc_ops *ae_ops(void *ctx) in ae_ops() function 413 return ae_ops(ctx)->init(ctx, mode, key, key_len, nonce, nonce_len, in crypto_authenc_init() 420 return ae_ops(ctx)->update_aad(ctx, data, len); in crypto_authenc_update_aad() 433 return ae_ops(ctx)->update_payload(ctx, mode, src_data, src_len, in crypto_authenc_update_payload() 446 return ae_ops(ctx)->enc_final(ctx, src_data, src_len, dst_data, in crypto_authenc_enc_final() 459 return ae_ops(ctx)->dec_final(ctx, src_data, src_len, dst_data, tag, in crypto_authenc_dec_final() 465 ae_ops(ctx)->final(ctx); in crypto_authenc_final() 471 ae_ops(ctx)->free_ctx(ctx); in crypto_authenc_free_ctx() 476 ae_ops(dst_ctx)->copy_state(dst_ctx, src_ctx); in crypto_authenc_copy_state()
|