pub trait ToBytesGadget<F: Field> {
    fn to_bytes<CS: ConstraintSystem<F>>(
        &self,
        cs: CS
    ) -> Result<Vec<UInt8>, SynthesisError>;
fn to_bytes_strict<CS: ConstraintSystem<F>>(
        &self,
        cs: CS
    ) -> Result<Vec<UInt8>, SynthesisError>; }

Required methods

Additionally checks if the produced list of booleans is ‘valid’.

Implementations on Foreign Types

Implementors