[][src]Struct signatory::ecdsa::curve::nistp384::NistP384

pub struct NistP384;

The NIST P-384 elliptic curve: y² = x³ - 3x + b over a ~384-bit prime field where b is "verifiably random"† constant:

b = 2758019355995970587784901184038904809305690585636156852142 8707301988689241309860865136260764883745107765439761230575

† NOTE: the specific origins of this constant have never been fully disclosed (it is the SHA-1 digest of an inexplicable NSA-selected constant)

NIST P-384 is also known as secp384r1 (SECG)

Trait Implementations

impl WeierstrassCurve for NistP384[src]

const CURVE_KIND: WeierstrassCurveKind[src]

Elliptic curve kind

type ScalarSize = U48

Random 384-bit (48-byte) private scalar

type CompressedPointSize = U49

Size of a compressed elliptic curve point serialized using Elliptic-Curve-Point-to-Octet-String encoding

type UntaggedPointSize = U96

Size of a raw uncompressed elliptic curve point sans the 0x04 tag byte added in the UncompressedPointSize value.

type UncompressedPointSize = U97

Size of an uncompressed elliptic curve point serialized using the Elliptic-Curve-Point-to-Octet-String encoding (including the 0x04 tag)

type Asn1SignatureMaxSize = U105

Maximum size of an ASN.1 DER encoded signature

type FixedSignatureSize = U96

Concatenated r || s values (48-bytes each)

impl Debug for NistP384[src]

impl PartialEq<NistP384> for NistP384[src]

impl Eq for NistP384[src]

impl Ord for NistP384[src]

impl PartialOrd<NistP384> for NistP384[src]

impl Hash for NistP384[src]

impl Copy for NistP384[src]

impl Clone for NistP384[src]

impl Default for NistP384[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> Same<T> for T

type Output = T

Should always be Self