pub trait BinaryField: ExtensionField<BinaryField1b> {
    const MULTIPLICATIVE_GENERATOR: Self;
    const N_BITS: usize = Self::DEGREE;
}
Expand description

A finite field with characteristic 2.

Required Associated Constants§

Provided Associated Constants§

source

const N_BITS: usize = Self::DEGREE

Object Safety§

This trait is not object safe.

Implementors§