[#ChaCha20-Crypt] = xref:ChaCha20.adoc[ChaCha20]::Crypt :relfileprefix: ../ :mrdocs: en/deciphers the message <in_bytes> and write the result into <out_bytes> == Synopsis Declared in `<crypto/chacha20.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void Crypt( std::span<std::byte const> in_bytes, std::span<std::byte> out_bytes) noexcept; ---- == Description The size of in_bytes and out_bytes must be equal. == Parameters [cols="1,4"] |=== | Name| Description | *in_bytes* | The message to encrypt or decrypt. | *out_bytes* | Output buffer receiving the result; must be the same size as `in_bytes.` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#