1
2
3
4
5
6
7
8
// Copyright 2024 Ulvetanna Inc.

use super::packed_scaled::packed_scaled_field;
use crate::arch::packed_polyval_128::PackedBinaryPolyval1x128b;

// 256 bit value that just contains two 128-bit integers.
// Is used for portable implementation of 512-bit packed fields.
packed_scaled_field!(PackedBinaryPolyval2x128b = [PackedBinaryPolyval1x128b; 2]);