Function tink_core::keyset::insecure::write

source ·
pub fn write<T>(h: &Handle, w: &mut T) -> Result<(), TinkError>where
    T: Writer,
Available on crate feature insecure only.
Expand description

Exports the keyset from h to the given writer w without encrypting it. Storing secret key material in an unencrypted fashion is dangerous. If feasible, you should use super::Handle::write() instead.