Lines Matching refs:ossl_gcm_context
29 sizeof(struct ossl_gcm_context) <= sizeof(struct ossl_cipher_context),
145 gcm_init(struct ossl_gcm_context *ctx, const void *key, size_t keylen) in gcm_init()
157 gcm_tag_op(struct ossl_gcm_context *ctx, unsigned char *tag, size_t len) in gcm_tag_op()
164 gcm_init_op(struct ossl_gcm_context *ctx, const void *key, size_t keylen) in gcm_init_op()
177 gcm_setiv_op(struct ossl_gcm_context *ctx, const unsigned char *iv, in gcm_setiv_op()
210 gcm_aad_op(struct ossl_gcm_context *ctx, const unsigned char *aad, in gcm_aad_op()
255 gcm_encrypt(struct ossl_gcm_context *ctx, const unsigned char *in, in gcm_encrypt()
304 gcm_encrypt_ctr32(struct ossl_gcm_context *ctx, const unsigned char *in, in gcm_encrypt_ctr32()
383 gcm_encrypt_op(struct ossl_gcm_context *ctx, const unsigned char *in, in gcm_encrypt_op()
406 gcm_decrypt(struct ossl_gcm_context *ctx, const unsigned char *in, in gcm_decrypt()
458 gcm_decrypt_ctr32(struct ossl_gcm_context *ctx, const unsigned char *in, in gcm_decrypt_ctr32()
545 gcm_decrypt_op(struct ossl_gcm_context *ctx, const unsigned char *in, in gcm_decrypt_op()
567 gcm_finish_op(struct ossl_gcm_context *ctx, const unsigned char *tag, in gcm_finish_op()
609 struct ossl_gcm_context *ctx; in ossl_aes_gcm_setkey()