ring::aead::CHACHA20_POLY1305 [] [src]

pub static CHACHA20_POLY1305: Algorithm = aead::Algorithm{key_len: CHACHA20_KEY_LEN,
                init: init,
                seal: chacha20_poly1305_seal,
                open: chacha20_poly1305_open,}

ChaCha20-Poly1305 as described in RFC 7539.

The keys are 256 bits long and the nonces are 96 bits long.