[][src]Struct bdrck::crypto::key::WrappedKey

pub struct WrappedKey { /* fields omitted */ }

A wrapped key is a Key which has been wrapped (encrypted) with another key. This is useful because it lets us have e.g. a single "master key" which is wrapped by several sub-keys, which can be added / removed at will without having to actually re-encrypt all of the data encrypted with the "master key".

Methods

impl WrappedKey[src]

pub fn get_digest(&self) -> Digest[src]

Return a digest/signature computed from this key.

pub fn get_wrapping_digest(&self) -> &Digest[src]

Return the digest/signature of the outermost key used to wrap this key.

pub fn unwrap<K: AbstractKey>(self, key: &K) -> Result<WrappedPayload>[src]

Unwrap this WrappedKey using the given key for decryption. This can return either a Key, or another WrappedKey if the underlying key was wrapped more than one time.

Trait Implementations

impl Clone for WrappedKey[src]

impl<'de> Deserialize<'de> for WrappedKey[src]

impl Serialize for WrappedKey[src]

impl Wrappable for WrappedKey[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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