Skip to main content

EncryptedSecretKey

Struct EncryptedSecretKey 

Source
pub struct EncryptedSecretKey { /* private fields */ }
Available on crate feature nip49 only.
Expand description

An encrypted secret key, ready to be bech32-encoded as ncryptsec1....

Debug redacts every byte so the value can be safely logged.

We deliberately do not implement Copy: even though every field is Copy-eligible, silently duplicating an encrypted secret across the stack would violate the principle that callers must reason explicitly about every place the ciphertext lives. Use Clone when you really need a second owned copy.

Implementations§

Source§

impl EncryptedSecretKey

Source

pub fn encrypt( secret: &SecretKey, password: &str, log_n: u8, security: KeySecurity, ) -> Result<Self, Nip49Error>

Encrypt secret under password with a random salt and nonce.

log_n is the scrypt cost parameter; spec recommends 16 for client UX and 21+ for cold-storage. security is recorded as AAD so any later tamper is caught by the AEAD.

§Errors

Returns Nip49Error::LogNTooLarge / Nip49Error::InvalidParams when scrypt rejects the cost, or Nip49Error::Rng when the OS RNG is unavailable.

Source

pub fn encrypt_with( secret: &SecretKey, password: &str, log_n: u8, security: KeySecurity, salt: [u8; 16], nonce: [u8; 24], ) -> Result<Self, Nip49Error>

Encrypt with a caller-supplied salt and nonce.

Use with care: reusing a (password, salt, nonce) triple across two encryptions defeats the AEAD. Reserved for known-answer test vectors and deterministic fixtures.

§Errors

See Self::encrypt.

Source

pub fn decrypt(&self, password: &str) -> Result<SecretKey, Nip49Error>

Recover the secret key with the same password used to encrypt.

§Errors

Returns Nip49Error::Aead when the password is wrong or the ciphertext / security byte was tampered with, Nip49Error::SecretKey when the decrypted bytes do not encode a valid secp256k1 scalar, or Nip49Error::InvalidParams / Nip49Error::Scrypt for derivation failures.

Source

pub const fn log_n(&self) -> u8

Cost parameter the secret was encrypted under.

Source

pub const fn security(&self) -> KeySecurity

Security level the author declared at encryption time.

Source

pub fn to_bech32(&self) -> Result<String, Nip49Error>

Encode as the spec-mandated ncryptsec1... bech32 string.

§Errors

Returns Nip49Error::Encode only if the underlying bech32 crate rejects the payload, which on a 91-byte buffer is statically impossible.

Source

pub fn from_bech32(input: &str) -> Result<Self, Nip49Error>

Decode from the ncryptsec1... bech32 string.

§Errors

Returns Nip49Error::Decode for malformed bech32, Nip49Error::UnexpectedHrp when the HRP is not ncryptsec, Nip49Error::InvalidLength when the decoded payload is not exactly PAYLOAD_BYTES long, and Nip49Error::UnsupportedVersion / Nip49Error::InvalidKeySecurity when the payload header is malformed.

Trait Implementations§

Source§

impl Clone for EncryptedSecretKey

Source§

fn clone(&self) -> EncryptedSecretKey

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for EncryptedSecretKey

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Drop for EncryptedSecretKey

Source§

fn drop(&mut self)

Best-effort zeroize on drop.

ciphertext is encrypted, but salt and nonce are privacy-relevant inputs to the scrypt KDF — wiping them reduces the chance that a freed allocation hands them to the next allocator caller. The compiler may still elide some writes under aggressive optimisation; the zeroize crate’s volatile-write implementation is the best portable mitigation we have.

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
Source§

impl Eq for EncryptedSecretKey

Source§

impl PartialEq for EncryptedSecretKey

Source§

fn eq(&self, other: &EncryptedSecretKey) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for EncryptedSecretKey

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self> ⓘ

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self> ⓘ

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> ⓘ
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more