use core::cmp::Ordering;
use rand::Rng;
use crunchy::unroll;
use byteorder::{BigEndian, ByteOrder};
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
#[repr(C)]
pub struct U256(pub [u128; 2]);
impl From<[u64; 4]> for U256 {
fn from(d: [u64; 4]) -> Self {
let mut a = [0u128; 2];
a[0] = (d[1] as u128) << 64 | d[0] as u128;
a[1] = (d[3] as u128) << 64 | d[2] as u128;
U256(a)
}
}
impl From<u64> for U256 {
fn from(d: u64) -> Self {
U256::from([d, 0, 0, 0])
}
}
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
#[repr(C)]
pub struct U512(pub [u128; 4]);
impl From<[u64; 8]> for U512 {
fn from(d: [u64; 8]) -> Self {
let mut a = [0u128; 4];
a[0] = (d[1] as u128) << 64 | d[0] as u128;
a[1] = (d[3] as u128) << 64 | d[2] as u128;
a[2] = (d[5] as u128) << 64 | d[4] as u128;
a[3] = (d[7] as u128) << 64 | d[6] as u128;
U512(a)
}
}
impl U512 {
pub fn new(c1: &U256, c0: &U256, modulo: &U256) -> U512 {
let mut res = [0; 4];
debug_assert_eq!(c1.0.len(), 2);
unroll! {
for i in 0..2 {
mac_digit(i, &mut res, &modulo.0, c1.0[i]);
}
}
let mut carry = 0;
debug_assert_eq!(res.len(), 4);
unroll! {
for i in 0..2 {
res[i] = adc(res[i], c0.0[i], &mut carry);
}
}
unroll! {
for i in 0..2 {
let (a1, a0) = split_u128(res[i + 2]);
let (c, r0) = split_u128(a0 + carry);
let (c, r1) = split_u128(a1 + c);
carry = c;
res[i + 2] = combine_u128(r1, r0);
}
}
debug_assert!(0 == carry);
U512(res)
}
pub fn from_slice(s: &[u8]) -> Result<U512, Error> {
if s.len() != 64 {
return Err(Error::InvalidLength {
expected: 32,
actual: s.len(),
});
}
let mut n = [0; 4];
for (l, i) in (0..4).rev().zip((0..4).map(|i| i * 16)) {
n[l] = BigEndian::read_u128(&s[i..]);
}
Ok(U512(n))
}
pub fn random<R: Rng>(rng: &mut R) -> U512 {
U512(rng.gen())
}
pub fn get_bit(&self, n: usize) -> Option<bool> {
if n >= 512 {
None
} else {
let part = n / 128;
let bit = n - (128 * part);
Some(self.0[part] & (1 << bit) > 0)
}
}
pub fn divrem(&self, modulo: &U256) -> (Option<U256>, U256) {
let mut q = Some(U256::zero());
let mut r = U256::zero();
for i in (0..512).rev() {
mul2(&mut r.0);
assert!(r.set_bit(0, self.get_bit(i).unwrap()));
if &r >= modulo {
sub_noborrow(&mut r.0, &modulo.0);
if q.is_some() && !q.as_mut().unwrap().set_bit(i, true) {
q = None
}
}
}
if q.is_some() && (q.as_ref().unwrap() >= modulo) {
(None, r)
} else {
(q, r)
}
}
pub fn interpret(buf: &[u8; 64]) -> U512 {
let mut n = [0; 4];
for (l, i) in (0..4).rev().zip((0..4).map(|i| i * 16)) {
n[l] = BigEndian::read_u128(&buf[i..]);
}
U512(n)
}
}
impl Ord for U512 {
#[inline]
fn cmp(&self, other: &U512) -> Ordering {
for (a, b) in self.0.iter().zip(other.0.iter()).rev() {
if *a < *b {
return Ordering::Less;
} else if *a > *b {
return Ordering::Greater;
}
}
return Ordering::Equal;
}
}
impl PartialOrd for U512 {
#[inline]
fn partial_cmp(&self, other: &U512) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Ord for U256 {
#[inline]
fn cmp(&self, other: &U256) -> Ordering {
for (a, b) in self.0.iter().zip(other.0.iter()).rev() {
if *a < *b {
return Ordering::Less;
} else if *a > *b {
return Ordering::Greater;
}
}
return Ordering::Equal;
}
}
impl PartialOrd for U256 {
#[inline]
fn partial_cmp(&self, other: &U256) -> Option<Ordering> {
Some(self.cmp(other))
}
}
#[derive(Debug)]
pub enum Error {
InvalidLength { expected: usize, actual: usize },
}
impl U256 {
pub fn from_slice(s: &[u8]) -> Result<U256, Error> {
if s.len() != 32 {
return Err(Error::InvalidLength {
expected: 32,
actual: s.len(),
});
}
let mut n = [0; 2];
for (l, i) in (0..2).rev().zip((0..2).map(|i| i * 16)) {
n[l] = BigEndian::read_u128(&s[i..]);
}
Ok(U256(n))
}
pub fn to_big_endian(&self, s: &mut [u8]) -> Result<(), Error> {
if s.len() != 32 {
return Err(Error::InvalidLength {
expected: 32,
actual: s.len(),
});
}
for (l, i) in (0..2).rev().zip((0..2).map(|i| i * 16)) {
BigEndian::write_u128(&mut s[i..], self.0[l]);
}
Ok(())
}
#[inline]
pub fn zero() -> U256 {
U256([0, 0])
}
#[inline]
pub fn one() -> U256 {
U256([1, 0])
}
pub fn random<R: Rng>(rng: &mut R, modulo: &U256) -> U256 {
U512::random(rng).divrem(modulo).1
}
pub fn is_zero(&self) -> bool {
self.0[0] == 0 && self.0[1] == 0
}
pub fn set_bit(&mut self, n: usize, to: bool) -> bool {
if n >= 256 {
false
} else {
let part = n / 128;
let bit = n - (128 * part);
if to {
self.0[part] |= 1 << bit;
} else {
self.0[part] &= !(1 << bit);
}
true
}
}
pub fn get_bit(&self, n: usize) -> Option<bool> {
if n >= 256 {
None
} else {
let part = n / 128;
let bit = n - (128 * part);
Some(self.0[part] & (1 << bit) > 0)
}
}
pub fn add(&mut self, other: &U256, modulo: &U256) {
add_nocarry(&mut self.0, &other.0);
if *self >= *modulo {
sub_noborrow(&mut self.0, &modulo.0);
}
}
pub fn sub(&mut self, other: &U256, modulo: &U256) {
if *self < *other {
add_nocarry(&mut self.0, &modulo.0);
}
sub_noborrow(&mut self.0, &other.0);
}
pub fn mul(&mut self, other: &U256, modulo: &U256, inv: u128) {
mul_reduce(&mut self.0, &other.0, &modulo.0, inv);
if *self >= *modulo {
sub_noborrow(&mut self.0, &modulo.0);
}
}
pub fn neg(&mut self, modulo: &U256) {
if *self > Self::zero() {
let mut tmp = modulo.0;
sub_noborrow(&mut tmp, &self.0);
self.0 = tmp;
}
}
#[inline]
pub fn is_even(&self) -> bool {
self.0[0] & 1 == 0
}
pub fn invert(&mut self, modulo: &U256) {
let mut u = *self;
let mut v = *modulo;
let mut b = U256::one();
let mut c = U256::zero();
while u != U256::one() && v != U256::one() {
while u.is_even() {
div2(&mut u.0);
if b.is_even() {
div2(&mut b.0);
} else {
add_nocarry(&mut b.0, &modulo.0);
div2(&mut b.0);
}
}
while v.is_even() {
div2(&mut v.0);
if c.is_even() {
div2(&mut c.0);
} else {
add_nocarry(&mut c.0, &modulo.0);
div2(&mut c.0);
}
}
if u >= v {
sub_noborrow(&mut u.0, &v.0);
b.sub(&c, modulo);
} else {
sub_noborrow(&mut v.0, &u.0);
c.sub(&b, modulo);
}
}
if u == U256::one() {
self.0 = b.0;
} else {
self.0 = c.0;
}
}
pub fn bits(&self) -> BitIterator {
BitIterator { int: &self, n: 256 }
}
}
pub struct BitIterator<'a> {
int: &'a U256,
n: usize,
}
impl<'a> Iterator for BitIterator<'a> {
type Item = bool;
fn next(&mut self) -> Option<bool> {
if self.n == 0 {
None
} else {
self.n -= 1;
self.int.get_bit(self.n)
}
}
}
#[inline]
fn div2(a: &mut [u128; 2]) {
let tmp = a[1] << 127;
a[1] >>= 1;
a[0] >>= 1;
a[0] |= tmp;
}
#[inline]
fn mul2(a: &mut [u128; 2]) {
let tmp = a[0] >> 127;
a[0] <<= 1;
a[1] <<= 1;
a[1] |= tmp;
}
#[inline(always)]
fn split_u128(i: u128) -> (u128, u128) {
(i >> 64, i & 0xFFFFFFFFFFFFFFFF)
}
#[inline(always)]
fn combine_u128(hi: u128, lo: u128) -> u128 {
(hi << 64) | lo
}
#[inline]
fn adc(a: u128, b: u128, carry: &mut u128) -> u128 {
let (a1, a0) = split_u128(a);
let (b1, b0) = split_u128(b);
let (c, r0) = split_u128(a0 + b0 + *carry);
let (c, r1) = split_u128(a1 + b1 + c);
*carry = c;
combine_u128(r1, r0)
}
#[inline]
fn add_nocarry(a: &mut [u128; 2], b: &[u128; 2]) {
let mut carry = 0;
for (a, b) in a.into_iter().zip(b.iter()) {
*a = adc(*a, *b, &mut carry);
}
debug_assert!(0 == carry);
}
#[inline]
fn sub_noborrow(a: &mut [u128; 2], b: &[u128; 2]) {
#[inline]
fn sbb(a: u128, b: u128, borrow: &mut u128) -> u128 {
let (a1, a0) = split_u128(a);
let (b1, b0) = split_u128(b);
let (b, r0) = split_u128((1 << 64) + a0 - b0 - *borrow);
let (b, r1) = split_u128((1 << 64) + a1 - b1 - ((b == 0) as u128));
*borrow = (b == 0) as u128;
combine_u128(r1, r0)
}
let mut borrow = 0;
for (a, b) in a.into_iter().zip(b.iter()) {
*a = sbb(*a, *b, &mut borrow);
}
debug_assert!(0 == borrow);
}
#[inline(always)]
fn mac_digit(from_index: usize, acc: &mut [u128; 4], b: &[u128; 2], c: u128) {
#[inline]
fn mac_with_carry(a: u128, b: u128, c: u128, carry: &mut u128) -> u128 {
let (b_hi, b_lo) = split_u128(b);
let (c_hi, c_lo) = split_u128(c);
let (a_hi, a_lo) = split_u128(a);
let (carry_hi, carry_lo) = split_u128(*carry);
let (x_hi, x_lo) = split_u128(b_lo * c_lo + a_lo + carry_lo);
let (y_hi, y_lo) = split_u128(b_lo * c_hi);
let (z_hi, z_lo) = split_u128(b_hi * c_lo);
let (r_hi, r_lo) = split_u128((x_hi + y_lo) + (z_lo + a_hi) + carry_hi);
*carry = (b_hi * c_hi) + r_hi + y_hi + z_hi;
combine_u128(r_lo, x_lo)
}
if c == 0 {
return;
}
let mut carry = 0;
debug_assert_eq!(acc.len(), 4);
unroll! {
for i in 0..2 {
let a_index = i + from_index;
acc[a_index] = mac_with_carry(acc[a_index], b[i], c, &mut carry);
}
}
unroll! {
for i in 0..2 {
let a_index = i + from_index + 2;
if a_index < 4 {
let (a_hi, a_lo) = split_u128(acc[a_index]);
let (carry_hi, carry_lo) = split_u128(carry);
let (x_hi, x_lo) = split_u128(a_lo + carry_lo);
let (r_hi, r_lo) = split_u128(x_hi + a_hi + carry_hi);
carry = r_hi;
acc[a_index] = combine_u128(r_lo, x_lo);
}
}
}
debug_assert!(carry == 0);
}
#[inline]
fn mul_reduce(this: &mut [u128; 2], by: &[u128; 2], modulus: &[u128; 2], inv: u128) {
let mut res = [0; 2 * 2];
unroll! {
for i in 0..2 {
mac_digit(i, &mut res, by, this[i]);
}
}
unroll! {
for i in 0..2 {
let k = inv.wrapping_mul(res[i]);
mac_digit(i, &mut res, modulus, k);
}
}
this.copy_from_slice(&res[2..]);
}
#[test]
fn setting_bits() {
let rng = &mut ::rand::thread_rng();
let modulo = U256::from([0xffffffffffffffff; 4]);
let a = U256::random(rng, &modulo);
let mut e = U256::zero();
for (i, b) in a.bits().enumerate() {
assert!(e.set_bit(255 - i, b));
}
assert_eq!(a, e);
}
#[test]
fn from_slice() {
let tst = U256::one();
let mut s = [0u8; 32];
s[31] = 1;
let num =
U256::from_slice(&s).expect("U256 should initialize ok from slice in `from_slice` test");
assert_eq!(num, tst);
}
#[test]
fn to_big_endian() {
let num = U256::one();
let mut s = [0u8; 32];
num.to_big_endian(&mut s)
.expect("U256 should convert to bytes ok in `to_big_endian` test");
assert_eq!(
s,
[
0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8,
0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 1u8,
]
);
}
#[test]
fn testing_divrem() {
let rng = &mut ::rand::thread_rng();
let modulo = U256::from([
0x3c208c16d87cfd47,
0x97816a916871ca8d,
0xb85045b68181585d,
0x30644e72e131a029,
]);
for _ in 0..100 {
let c0 = U256::random(rng, &modulo);
let c1 = U256::random(rng, &modulo);
let c1q_plus_c0 = U512::new(&c1, &c0, &modulo);
let (new_c1, new_c0) = c1q_plus_c0.divrem(&modulo);
assert!(c1 == new_c1.unwrap());
assert!(c0 == new_c0);
}
{
let a = U512::from([
0x3c208c16d87cfd47,
0x97816a916871ca8d,
0xb85045b68181585d,
0x30644e72e131a029,
0,
0,
0,
0,
]);
let (c1, c0) = a.divrem(&modulo);
assert_eq!(c1.unwrap(), U256::one());
assert_eq!(c0, U256::zero());
}
{
let a = U512::from([
0x3b5458a2275d69b0,
0xa602072d09eac101,
0x4a50189c6d96cadc,
0x04689e957a1242c8,
0x26edfa5c34c6b38d,
0xb00b855116375606,
0x599a6f7c0348d21c,
0x0925c4b8763cbf9c,
]);
let (c1, c0) = a.divrem(&modulo);
assert_eq!(
c1.unwrap(),
U256::from([
0x3c208c16d87cfd46,
0x97816a916871ca8d,
0xb85045b68181585d,
0x30644e72e131a029
])
);
assert_eq!(
c0,
U256::from([
0x3c208c16d87cfd46,
0x97816a916871ca8d,
0xb85045b68181585d,
0x30644e72e131a029
])
);
}
{
let a = U512::from([
0x3b5458a2275d69af,
0xa602072d09eac101,
0x4a50189c6d96cadc,
0x04689e957a1242c8,
0x26edfa5c34c6b38d,
0xb00b855116375606,
0x599a6f7c0348d21c,
0x0925c4b8763cbf9c,
]);
let (c1, c0) = a.divrem(&modulo);
assert_eq!(
c1.unwrap(),
U256::from([
0x3c208c16d87cfd46,
0x97816a916871ca8d,
0xb85045b68181585d,
0x30644e72e131a029
])
);
assert_eq!(
c0,
U256::from([
0x3c208c16d87cfd45,
0x97816a916871ca8d,
0xb85045b68181585d,
0x30644e72e131a029
])
);
}
{
let a = U512::from([
0xffffffffffffffff,
0xffffffffffffffff,
0xffffffffffffffff,
0xffffffffffffffff,
0xffffffffffffffff,
0xffffffffffffffff,
0xffffffffffffffff,
0xffffffffffffffff,
]);
let (c1, c0) = a.divrem(&modulo);
assert!(c1.is_none());
assert_eq!(
c0,
U256::from([
0xf32cfc5b538afa88,
0xb5e71911d44501fb,
0x47ab1eff0a417ff6,
0x06d89f71cab8351f
])
);
}
{
let a = U512::from([
0x3b5458a2275d69b1,
0xa602072d09eac101,
0x4a50189c6d96cadc,
0x04689e957a1242c8,
0x26edfa5c34c6b38d,
0xb00b855116375606,
0x599a6f7c0348d21c,
0x0925c4b8763cbf9c,
]);
let (c1, c0) = a.divrem(&modulo);
assert!(c1.is_none());
assert_eq!(c0, U256::zero());
}
{
let a = U512::from([
0x3b5458a2275d69b2,
0xa602072d09eac101,
0x4a50189c6d96cadc,
0x04689e957a1242c8,
0x26edfa5c34c6b38d,
0xb00b855116375606,
0x599a6f7c0348d21c,
0x0925c4b8763cbf9c,
]);
let (c1, c0) = a.divrem(&modulo);
assert!(c1.is_none());
assert_eq!(c0, U256::one());
}
{
let modulo = U256::from([
0x43e1f593f0000001,
0x2833e84879b97091,
0xb85045b68181585d,
0x30644e72e131a029,
]);
let a = U512::from([
0xffffffffffffffff,
0xffffffffffffffff,
0xffffffffffffffff,
0xffffffffffffffff,
0xffffffffffffffff,
0xffffffffffffffff,
0xffffffffffffffff,
0x07ffffffffffffff,
]);
let (c1, c0) = a.divrem(&modulo);
assert!(c1.unwrap() < modulo);
assert!(c0 < modulo);
}
}