Type Alias BitwardenLegacyKeyBytes

Source
pub type BitwardenLegacyKeyBytes = Bytes<BitwardenLegacyKeyContentFormat>;
Expand description

BitwardenLegacyKeyBytes is a type alias for Bytes with BitwardenLegacyKeyContentFormat. This is used for the legacy format for symmetric keys. A description of the format is available in the ContentFormat::BitwardenLegacyKey documentation.

Aliased Type§

struct BitwardenLegacyKeyBytes {
    inner: Vec<u8>,
    _marker: PhantomData<BitwardenLegacyKeyContentFormat>,
}

Fields§

§inner: Vec<u8>§_marker: PhantomData<BitwardenLegacyKeyContentFormat>