[−][src]Function tink_core::keyset::insecure::write
pub fn write<T>(h: &Handle, w: &mut T) -> Result<(), TinkError> where
T: Writer,
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.