pub struct Ed448Group;Expand description
An implementation of the FROST(Ed448, SHAKE256) ciphersuite group.
Trait Implementations§
Source§impl Clone for Ed448Group
impl Clone for Ed448Group
Source§fn clone(&self) -> Ed448Group
fn clone(&self) -> Ed448Group
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Group for Ed448Group
impl Group for Ed448Group
Source§type Field = Ed448ScalarField
type Field = Ed448ScalarField
A prime order finite field GF(q) over which all scalar values for our prime order group can
be multiplied are defined.
Source§type Element = ExtendedPoint
type Element = ExtendedPoint
An element of our group that we will be computing over.
Source§fn cofactor() -> <Self::Field as Field>::Scalar
fn cofactor() -> <Self::Field as Field>::Scalar
The order of the the quotient group when the prime order subgroup divides the order of the
full curve group. Read more
Source§fn generator() -> Self::Element
fn generator() -> Self::Element
The fixed generator element of the prime order group. Read more
Source§fn serialize(element: &Self::Element) -> Result<Self::Serialization, GroupError>
fn serialize(element: &Self::Element) -> Result<Self::Serialization, GroupError>
Source§fn deserialize(buf: &Self::Serialization) -> Result<Self::Element, GroupError>
fn deserialize(buf: &Self::Serialization) -> Result<Self::Element, GroupError>
Source§impl PartialEq for Ed448Group
impl PartialEq for Ed448Group
impl Copy for Ed448Group
impl Eq for Ed448Group
impl StructuralPartialEq for Ed448Group
Auto Trait Implementations§
impl Freeze for Ed448Group
impl RefUnwindSafe for Ed448Group
impl Send for Ed448Group
impl Sync for Ed448Group
impl Unpin for Ed448Group
impl UnwindSafe for Ed448Group
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more