Trait hacspec_lib::prelude::UnsignedSecretInteger
source · [−]pub trait UnsignedSecretInteger: UnsignedInteger + SecretInteger {
fn to_le_bytes(self) -> Seq<U8>;
fn to_be_bytes(self) -> Seq<U8>;
fn from_le_bytes(x: &Seq<U8>) -> Self;
fn from_be_bytes(x: &Seq<U8>) -> Self;
fn get_byte(self, i: usize) -> Self { ... }
}