pub struct EccParameterDetails { /* private fields */ }Expand description
Implementations§
Source§impl EccParameterDetails
impl EccParameterDetails
Sourcepub const fn kdf(&self) -> &KeyDerivationFunctionScheme
pub const fn kdf(&self) -> &KeyDerivationFunctionScheme
Returns the key derivation function scheme.
Sourcepub const fn p(&self) -> &EccParameter
pub const fn p(&self) -> &EccParameter
Returns the prime modulus p.
Sourcepub const fn a(&self) -> &EccParameter
pub const fn a(&self) -> &EccParameter
Returns the curve coefficient a.
Sourcepub const fn b(&self) -> &EccParameter
pub const fn b(&self) -> &EccParameter
Returns the curve coefficient b.
Sourcepub const fn g_x(&self) -> &EccParameter
pub const fn g_x(&self) -> &EccParameter
Returns the x-coordinate of the base point G.
Sourcepub const fn g_y(&self) -> &EccParameter
pub const fn g_y(&self) -> &EccParameter
Returns the y-coordinate of the base point G.
Sourcepub const fn n(&self) -> &EccParameter
pub const fn n(&self) -> &EccParameter
Returns the order of the base point n.
Sourcepub const fn h(&self) -> &EccParameter
pub const fn h(&self) -> &EccParameter
Returns the cofactor h.
Trait Implementations§
Source§impl Clone for EccParameterDetails
impl Clone for EccParameterDetails
Source§fn clone(&self) -> EccParameterDetails
fn clone(&self) -> EccParameterDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EccParameterDetails
impl Debug for EccParameterDetails
Auto Trait Implementations§
impl Freeze for EccParameterDetails
impl RefUnwindSafe for EccParameterDetails
impl Send for EccParameterDetails
impl Sync for EccParameterDetails
impl Unpin for EccParameterDetails
impl UnsafeUnpin for EccParameterDetails
impl UnwindSafe for EccParameterDetails
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