Lines Matching refs:byte
93 size_t out_len = sizeof(out->byte); in siv128_do_s2v_p()
106 if (!EVP_MAC_update(mac_ctx, t.byte, SIV_LEN)) in siv128_do_s2v_p()
111 t.byte[len] = 0x80; in siv128_do_s2v_p()
114 if (!EVP_MAC_update(mac_ctx, t.byte, SIV_LEN)) in siv128_do_s2v_p()
117 if (!EVP_MAC_final(mac_ctx, out->byte, &out_len, sizeof(out->byte)) in siv128_do_s2v_p()
135 if (!EVP_CipherInit_ex(ctx, NULL, NULL, NULL, icv->byte, 1)) in siv128_do_encrypt()
202 || !EVP_MAC_final(mac_ctx, ctx->d.byte, &out_len, in ossl_siv128_init()
203 sizeof(ctx->d.byte))) { in ossl_siv128_init()
257 || !EVP_MAC_final(mac_ctx, mac_out.byte, &out_len, in ossl_siv128_aad()
258 sizeof(mac_out.byte)) in ossl_siv128_aad()
287 memcpy(ctx->tag.byte, &q, SIV_LEN); in ossl_siv128_encrypt()
288 q.byte[8] &= 0x7f; in ossl_siv128_encrypt()
289 q.byte[12] &= 0x7f; in ossl_siv128_encrypt()
313 memcpy(&q, ctx->tag.byte, SIV_LEN); in ossl_siv128_decrypt()
314 q.byte[8] &= 0x7f; in ossl_siv128_decrypt()
315 q.byte[12] &= 0x7f; in ossl_siv128_decrypt()
321 p = ctx->tag.byte; in ossl_siv128_decrypt()
323 t.byte[i] ^= p[i]; in ossl_siv128_decrypt()
350 memcpy(ctx->tag.byte, tag, len); in ossl_siv128_set_tag()
363 memcpy(tag, ctx->tag.byte, len); in ossl_siv128_get_tag()