Lines Matching refs:out_len
35 int out_len; in aes_gcm_siv_initkey() local
70 out_len = BLOCK_SIZE; in aes_gcm_siv_initkey()
71 if (!EVP_EncryptUpdate(ctx->ecb_ctx, output, &out_len, data.block, BLOCK_SIZE)) in aes_gcm_siv_initkey()
85 out_len = BLOCK_SIZE; in aes_gcm_siv_initkey()
86 if (!EVP_EncryptUpdate(ctx->ecb_ctx, output, &out_len, data.block, BLOCK_SIZE)) in aes_gcm_siv_initkey()
157 int out_len; in aes_gcm_siv_encrypt() local
196 out_len = sizeof(ctx->tag); in aes_gcm_siv_encrypt()
197 error |= !EVP_EncryptUpdate(ctx->ecb_ctx, ctx->tag, &out_len, S_s, sizeof(S_s)); in aes_gcm_siv_encrypt()
218 int out_len; in aes_gcm_siv_decrypt() local
266 out_len = sizeof(ctx->tag); in aes_gcm_siv_decrypt()
267 error |= !EVP_EncryptUpdate(ctx->ecb_ctx, ctx->tag, &out_len, S_s, sizeof(S_s)); in aes_gcm_siv_decrypt()
338 int out_len; in aes_gcm_siv_ctr32() local
356 out_len = BLOCK_SIZE; in aes_gcm_siv_ctr32()
357 … error |= !EVP_EncryptUpdate(ctx->ecb_ctx, keystream, &out_len, (uint8_t*)&block, sizeof(block)); in aes_gcm_siv_ctr32()