use crate::{
curves::{fp_parameters::FpParameters, to_field_vec::ToConstraintField, Field, PrimeField},
gadgets::{
curves::FpGadget,
r1cs::{Assignment, ConstraintSystem, LinearCombination},
utilities::{
alloc::AllocGadget,
boolean::{AllocatedBit, Boolean},
eq::{ConditionalEqGadget, EqGadget, EvaluateEqGadget},
select::CondSelectGadget,
ToBitsGadget,
ToBytesGadget,
},
},
};
use snarkvm_errors::gadgets::SynthesisError;
use snarkvm_utilities::bytes::ToBytes;
use core::borrow::Borrow;
use std::{cmp::Ordering, fmt::Debug};
uint_impl!(UInt8, u8, 8);
uint_impl!(UInt16, u16, 16);
uint_impl!(UInt32, u32, 32);
uint_impl!(UInt64, u64, 64);
pub trait UInt: Debug + Clone + PartialOrd + Eq + PartialEq {
fn negate(&self) -> Self;
fn is_constant(&self) -> bool;
fn result_is_constant(first: &Self, second: &Self) -> bool {
if !first.is_constant() {
return false;
}
second.is_constant()
}
fn to_bits_le(&self) -> Vec<Boolean>;
fn from_bits_le(bits: &[Boolean]) -> Self;
fn rotr(&self, by: usize) -> Self;
fn xor<F: Field, CS: ConstraintSystem<F>>(&self, cs: CS, other: &Self) -> Result<Self, SynthesisError>;
fn addmany<F: PrimeField, CS: ConstraintSystem<F>>(cs: CS, operands: &[Self]) -> Result<Self, SynthesisError>;
fn sub<F: PrimeField, CS: ConstraintSystem<F>>(&self, cs: CS, other: &Self) -> Result<Self, SynthesisError>;
fn sub_unsafe<F: PrimeField, CS: ConstraintSystem<F>>(&self, cs: CS, other: &Self) -> Result<Self, SynthesisError>;
fn mul<F: PrimeField, CS: ConstraintSystem<F>>(&self, cs: CS, other: &Self) -> Result<Self, SynthesisError>;
fn div<F: PrimeField, CS: ConstraintSystem<F>>(&self, cs: CS, other: &Self) -> Result<Self, SynthesisError>;
fn pow<F: Field + PrimeField, CS: ConstraintSystem<F>>(&self, cs: CS, other: &Self)
-> Result<Self, SynthesisError>;
}
impl UInt8 {
pub fn constant_vec(values: &[u8]) -> Vec<Self> {
values.iter().copied().map(UInt8::constant).collect()
}
pub fn alloc_vec<F, CS, T>(mut cs: CS, values: &[T]) -> Result<Vec<Self>, SynthesisError>
where
F: Field,
CS: ConstraintSystem<F>,
T: Into<Option<u8>> + Copy,
{
let mut output_vec = Vec::with_capacity(values.len());
for (i, value) in values.iter().enumerate() {
let byte: Option<u8> = Into::into(*value);
let alloc_byte = Self::alloc(&mut cs.ns(|| format!("byte_{}", i)), || byte.get())?;
output_vec.push(alloc_byte);
}
Ok(output_vec)
}
pub fn alloc_input_vec<F, CS>(mut cs: CS, values: &[u8]) -> Result<Vec<Self>, SynthesisError>
where
F: PrimeField,
CS: ConstraintSystem<F>,
{
let values_len = values.len();
let field_elements: Vec<F> = ToConstraintField::<F>::to_field_elements(values).unwrap();
let max_size = 8 * (F::Parameters::CAPACITY / 8) as usize;
let mut allocated_bits = Vec::new();
for (i, field_element) in field_elements.into_iter().enumerate() {
let fe = FpGadget::alloc_input(&mut cs.ns(|| format!("Field element {}", i)), || Ok(field_element))?;
let mut fe_bits = fe.to_bits(cs.ns(|| format!("Convert fe to bits {}", i)))?;
fe_bits.reverse();
allocated_bits.extend_from_slice(&fe_bits[0..max_size]);
}
Ok(allocated_bits[0..8 * values_len]
.chunks(8)
.map(Self::from_bits_le)
.collect())
}
}