CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2020/03/13 10:40:42
Modified files:
lib/libssl : Makefile d1_pkt.c ssl_locl.h t1_enc.c
Removed files:
lib/libssl : d1_enc.c
Log message:
Remove dtls1_enc().
Like much of the original DTLS code, dtls1_enc() is effectively a renamed
copy of tls1_enc(). Since then tls1_enc() has been modified, however the
non-AEAD code remains largely the same. As such, remove dtls1_enc() and
instead call tls1_enc() from the DTLS code.
The tls1_enc() AEAD code does not currently work correctly with DTLS,
however this is a non-issue since we do not support AEAD cipher suites with
DTLS currently.
ok tb@