Struct asuran::repository::EncryptedKey[][src]

pub struct EncryptedKey { /* fields omitted */ }
Expand description

Stores the key, encrypted with another key derived from the user specified password/passphrase

Uses argon2 to derive the key encryption key from the user supplied key.

Uses a 32 byte salt that is randomly generated

Currently uses semi-arbitrary defaults for some values. TODO: allow configuration of this

Implementations

Produces an encrypted key from the specified user key and encryption method

Convince function that uses argon2 parameters that the author of this program believes are reasonable as of time of writing. Please review them and apply your own common sense before blaming the author for the FBI reading your data.

Parameters are:

  • mem_cost: 65536
  • time_cost: 10

Attempts to decrypt the key material using the user supplied key.

Errors:

Will return Err(KeyError) if key decryption fails

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

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

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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