pub type SecretKey = SecretKey<NistP256>;
Expand description
NIST P-256 secret key.
Aliased Type§
struct SecretKey { /* private fields */ }
Implementations
Source§impl<C> SecretKey<C>where
C: Curve,
impl<C> SecretKey<C>where
C: Curve,
Sourcepub fn random(rng: &mut impl CryptoRngCore) -> SecretKey<C>where
C: CurveArithmetic,
pub fn random(rng: &mut impl CryptoRngCore) -> SecretKey<C>where
C: CurveArithmetic,
Generate a random SecretKey
.
Sourcepub fn new(scalar: ScalarPrimitive<C>) -> SecretKey<C>
pub fn new(scalar: ScalarPrimitive<C>) -> SecretKey<C>
Create a new secret key from a scalar value.
Sourcepub fn as_scalar_primitive(&self) -> &ScalarPrimitive<C>
pub fn as_scalar_primitive(&self) -> &ScalarPrimitive<C>
Borrow the inner secret ScalarPrimitive
value.
§⚠️ Warning
This value is key material.
Please treat it with the care it deserves!
Sourcepub fn to_nonzero_scalar(&self) -> NonZeroScalar<C>where
C: CurveArithmetic,
pub fn to_nonzero_scalar(&self) -> NonZeroScalar<C>where
C: CurveArithmetic,
Get the secret NonZeroScalar
value for this key.
§⚠️ Warning
This value is key material.
Please treat it with the care it deserves!
Sourcepub fn public_key(&self) -> PublicKey<C>where
C: CurveArithmetic,
pub fn public_key(&self) -> PublicKey<C>where
C: CurveArithmetic,
Get the PublicKey
which corresponds to this secret key
Sourcepub fn from_bytes(
bytes: &GenericArray<u8, <C as Curve>::FieldBytesSize>,
) -> Result<SecretKey<C>, Error>
pub fn from_bytes( bytes: &GenericArray<u8, <C as Curve>::FieldBytesSize>, ) -> Result<SecretKey<C>, Error>
Deserialize secret key from an encoded secret scalar.
Sourcepub fn from_slice(slice: &[u8]) -> Result<SecretKey<C>, Error>
pub fn from_slice(slice: &[u8]) -> Result<SecretKey<C>, Error>
Deserialize secret key from an encoded secret scalar passed as a byte slice.
The slice is expected to be a minimum of 24-bytes (192-byts) and at most C::FieldBytesSize
bytes in length.
Byte slices shorter than the field size are handled by zero padding the input.
Sourcepub fn to_bytes(&self) -> GenericArray<u8, <C as Curve>::FieldBytesSize>
pub fn to_bytes(&self) -> GenericArray<u8, <C as Curve>::FieldBytesSize>
Serialize raw secret scalar as a big endian integer.
Trait Implementations
Source§impl<C> ConstantTimeEq for SecretKey<C>where
C: Curve,
impl<C> ConstantTimeEq for SecretKey<C>where
C: Curve,
Source§impl<C> From<&NonZeroScalar<C>> for SecretKey<C>where
C: CurveArithmetic,
impl<C> From<&NonZeroScalar<C>> for SecretKey<C>where
C: CurveArithmetic,
Source§fn from(scalar: &NonZeroScalar<C>) -> SecretKey<C>
fn from(scalar: &NonZeroScalar<C>) -> SecretKey<C>
Converts to this type from the input type.
Source§impl<C> From<&SigningKey<C>> for SecretKey<C>where
C: PrimeCurve + CurveArithmetic,
<C as CurveArithmetic>::Scalar: Invert<Output = CtOption<<C as CurveArithmetic>::Scalar>> + SignPrimitive<C>,
<<C as Curve>::FieldBytesSize as Add>::Output: ArrayLength<u8>,
impl<C> From<&SigningKey<C>> for SecretKey<C>where
C: PrimeCurve + CurveArithmetic,
<C as CurveArithmetic>::Scalar: Invert<Output = CtOption<<C as CurveArithmetic>::Scalar>> + SignPrimitive<C>,
<<C as Curve>::FieldBytesSize as Add>::Output: ArrayLength<u8>,
Source§fn from(secret_key: &SigningKey<C>) -> SecretKey<C>
fn from(secret_key: &SigningKey<C>) -> SecretKey<C>
Converts to this type from the input type.
Source§impl<C> From<NonZeroScalar<C>> for SecretKey<C>where
C: CurveArithmetic,
impl<C> From<NonZeroScalar<C>> for SecretKey<C>where
C: CurveArithmetic,
Source§fn from(scalar: NonZeroScalar<C>) -> SecretKey<C>
fn from(scalar: NonZeroScalar<C>) -> SecretKey<C>
Converts to this type from the input type.
Source§impl<C> From<SigningKey<C>> for SecretKey<C>where
C: PrimeCurve + CurveArithmetic,
<C as CurveArithmetic>::Scalar: Invert<Output = CtOption<<C as CurveArithmetic>::Scalar>> + SignPrimitive<C>,
<<C as Curve>::FieldBytesSize as Add>::Output: ArrayLength<u8>,
impl<C> From<SigningKey<C>> for SecretKey<C>where
C: PrimeCurve + CurveArithmetic,
<C as CurveArithmetic>::Scalar: Invert<Output = CtOption<<C as CurveArithmetic>::Scalar>> + SignPrimitive<C>,
<<C as Curve>::FieldBytesSize as Add>::Output: ArrayLength<u8>,
Source§fn from(key: SigningKey<C>) -> SecretKey<C>
fn from(key: SigningKey<C>) -> SecretKey<C>
Converts to this type from the input type.