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