Struct asuran::repository::Key[][src]

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

Stores the Key material used by an asuran repository.

Contains 5 separate pieces of key material:

  • key:

The key used for encryption/decryption operations

  • hmac_key:

The key used for generating the integrity validation HMAC tag

  • id_key:

The key used for ChunkID generation using the HMAC

  • chunker_nonce:

A random u64 used for chunker randomization with supported chunking algorithms

Implementations

Creates a key from the given array of bytes

Will split the key stream into thirds.

Does not perform any padding.

Securely generates a random bundle of key material

Takes the desired length in bytes of each individual key component

Obtains a reference to the key bytes

Obtains a reference to the HMAC key bytes

Obtains a reference to the ID key bytes

Obtains the chunker nonce

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

Executes the destructor for this type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler. 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

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

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