The branch main has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=d6e78ecb0bcd5af750c72745c4c51fe211046bff
commit d6e78ecb0bcd5af750c72745c4c51fe211046bff Author: John Baldwin <[email protected]> AuthorDate: 2021-08-17 21:39:58 +0000 Commit: John Baldwin <[email protected]> CommitDate: 2021-08-17 21:41:37 +0000 OpenSSL: Refactor KTLS tests to better support TLS 1.3. Most of this upstream commit touched tests not included in the vendor import. The one change merged in is to remove a constant only present in an internal header to appease the older tests. Reviewed by: jkim Obtained from: OpenSSL (e1fdd5262e4a45ce3aaa631768e877ee7b6da21b) MFC after: 5 days Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D31442 --- crypto/openssl/include/internal/ktls.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/crypto/openssl/include/internal/ktls.h b/crypto/openssl/include/internal/ktls.h index 393794298ccd..e824cf3f3f92 100644 --- a/crypto/openssl/include/internal/ktls.h +++ b/crypto/openssl/include/internal/ktls.h @@ -39,12 +39,6 @@ # define OPENSSL_KTLS_AES_GCM_256 # define OPENSSL_KTLS_TLS13 -/* - * Only used by the tests in sslapitest.c. - */ -# define TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE 8 -# define TLS_CIPHER_AES_GCM_256_REC_SEQ_SIZE 8 - typedef struct tls_enable ktls_crypto_info_t; /* _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main To unsubscribe, send any mail to "[email protected]"
