Skip to main content

SigningKey

Struct SigningKey 

Source
pub struct SigningKey(/* private fields */);
Expand description

A DSTU 4145 m=257 private key - see crate::crypto_sign::SigningKey’s own doc comment for why signing itself needs no RNG.

Implementations§

Source§

impl SigningKey

Source

pub fn from_bytes(d: &[u8; 33]) -> Option<Self>

Builds a signing key from a big-endian 33-byte scalar. Returns None if d is zero or not less than the curve order n - same validation as crypto_sign::SigningKey::from_bytes.

Source

pub fn generate() -> Result<Self, RandomError>

Generates a fresh signing key from the OS CSPRNG - same rejection-sampling approach as crypto_sign::SigningKey::generate (docs/TASKS.md T-122), re-derived for this curve’s own order rather than assumed to carry over: curve257::order()’s top byte is 0x00 (D-185 - unlike m=163’s 0x04), so masking each 33-byte candidate’s top byte down to zero and its second byte to its low bit (n’s own bit-length is 256, one bit narrower than the 33-byte/264-bit draw) keeps the rejection rate near 50%, the same target crypto_sign’s own masking hits for m=163.

§Errors

Returns crate::randombytes::RandomError if the OS CSPRNG fails while drawing a candidate.

Source

pub fn to_bytes(&self) -> [u8; 33]

Returns d’s big-endian 33-byte encoding - see crypto_sign::SigningKey::to_bytes’s own doc comment for the caller-zeroizes-it convention this matches.

Source

pub fn verifying_key(&self) -> VerifyingKey

Source

pub fn sign(&self, message: &[u8]) -> Signature

Signs message - see crypto_sign::SigningKey::sign’s own doc comment.

Source

pub fn sign_digest(&self, digest: &[u8; 32]) -> Signature

Signs an already-computed 32-byte Kupyna-256 digest directly - see crypto_sign::SigningKey::sign_digest’s own doc comment (T-113’s streaming-message note).

Trait Implementations§

Source§

impl Drop for SigningKey

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.