pub struct NistP224Params {
pub p: [u8; 28],
pub a: [u8; 28],
pub b: [u8; 28],
pub g_x: [u8; 28],
pub g_y: [u8; 28],
pub n: [u8; 28],
pub h: u8,
}Expand description
NIST P-224 curve parameters
Fields§
§p: [u8; 28]Prime modulus
a: [u8; 28]Curve coefficient a
b: [u8; 28]Curve coefficient b
g_x: [u8; 28]Generator x-coordinate
g_y: [u8; 28]Generator y-coordinate
n: [u8; 28]Order of the curve
h: u8Cofactor
Auto Trait Implementations§
impl Freeze for NistP224Params
impl RefUnwindSafe for NistP224Params
impl Send for NistP224Params
impl Sync for NistP224Params
impl Unpin for NistP224Params
impl UnwindSafe for NistP224Params
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