pub trait PZipKey {
    fn kdf(&self) -> KeyDerivation;
    fn material(&self) -> &[u8]Notable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8];

    fn tags(&self) -> PZipTags { ... }
}
Expand description

Wraps a KeyDerivation and input key material.

Required Methods

Provided Methods

Implementors