CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2019/01/20 03:31:54
Modified files: lib/libssl : Makefile tls13_internal.h Added files: lib/libssl : tls13_record_layer.c Log message: Provide an initial implementation of the TLS 1.3 record layer. This is entirely self-contained and knows nothing about SSL or BIO. The bottom of the stack is provided by wire read and write callbacks, with the API to the record layer primarily being via tls13_{read,write}_{application,handshake}_data(). This currently lacks some functionality, however will be worked on in tree. ok tb@