Function sodiumoxide::crypto::secretbox::xsalsa20poly1305::seal_detached
[−]
[src]
pub fn seal_detached(m: &mut [u8], Nonce: &Nonce, Key: &Key) -> Tag
seal_detached()
encrypts and authenticates a message m
using a secret key k
and a nonce
n
. m
is encrypted in place, so after this function returns it will contain the ciphertext.
The detached authentication tag is returned by value.