CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2022/08/20 13:22:28
Modified files: lib/libcrypto/evp: e_chacha20poly1305.c evp.h Log message: Provide EVP_chacha20_poly1305() EVP_chacha20_poly1305() is an EVP_CIPHER implementation of the ChaCha20-Poly1305 AEAD. This is potentially used to provide encryption for the QUIC transport layer. Where possible, this should be avoided in favour of the significantly saner EVP_AEAD interface. ok tb@