//! Fixed-size secrets copied to the stack behind [`Zeroizing`].
usezeroize::Zeroizing;/// Block size for Romulus key, nonce, and tag (bytes).
pub(crate)constLEN:usize=16;/// Copy `bytes` (must be exactly [`LEN`] bytes) into stack memory cleared on drop.
pub(crate)fnzeroizing_copy_16(bytes:&[u8])->Zeroizing<[u8;LEN]>{letmut out =Zeroizing::new([0u8;LEN]);
out.copy_from_slice(bytes);
out
}