XChaCha20

Purpose

XChaCha20arrow-up-right is an unauthenticated stream cipher constructed using ChaCha20 and HChaCha20. It takes a 256-bit key and 192-bit nonce (number used only once) to encrypt/decrypt a message.

The 64-bit internal counter can be changed from the default of 0 to access any block without computing previous ones. However, it should generally not be touched.

circle-exclamation
triangle-exclamation

Usage

Fill

Fills a span with pseudorandom bytes computed from a nonce and key. This can be used to compute the Poly1305 key for constructing XChaCha20-Poly1305arrow-up-right.

XChaCha20.Fill(Span<byte> buffer, ReadOnlySpan<byte> nonce, ReadOnlySpan<byte> key)

Exceptions

ArgumentOutOfRangeExceptionarrow-up-right

buffer has a length of 0.

ArgumentOutOfRangeExceptionarrow-up-right

nonce has a length not equal to NonceSize.

ArgumentOutOfRangeExceptionarrow-up-right

key has a length not equal to KeySize.

CryptographicExceptionarrow-up-right

Error computing pseudorandom bytes.

Encrypt

Fills a span with ciphertext computed from a plaintext message, nonce, and key.

Exceptions

ArgumentOutOfRangeExceptionarrow-up-right

ciphertext has a length not equal to plaintext.Length.

ArgumentOutOfRangeExceptionarrow-up-right

nonce has a length not equal to NonceSize.

ArgumentOutOfRangeExceptionarrow-up-right

key has a length not equal to KeySize.

CryptographicExceptionarrow-up-right

Encryption failed.

Decrypt

Fills a span with plaintext computed from a ciphertext message, nonce, and key.

Exceptions

ArgumentOutOfRangeExceptionarrow-up-right

plaintext has a length not equal to ciphertext.Length.

ArgumentOutOfRangeExceptionarrow-up-right

nonce has a length not equal to NonceSize.

ArgumentOutOfRangeExceptionarrow-up-right

key has a length not equal to KeySize.

CryptographicExceptionarrow-up-right

Decryption failed.

Constants

These are used for validation and/or save you defining your own constants.

Notes

triangle-exclamation
triangle-exclamation
circle-exclamation
circle-exclamation

Last updated