1
1
/*
2
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -52,10 +52,10 @@ public class CustomizedServerDefaultProtocols {
52
52
enum ContextVersion {
53
53
TLS_CV_01 ("SSL" ,
54
54
new String []{"SSLv3" , "TLSv1" , "TLSv1.1" },
55
- new String []{"SSLv3" , "TLSv1" , "TLSv1.1" , "TLSv1.2" }),
55
+ new String []{"SSLv3" , "TLSv1" , "TLSv1.1" , "TLSv1.2" , "TLSv1.3" }),
56
56
TLS_CV_02 ("TLS" ,
57
57
new String []{"SSLv3" , "TLSv1" , "TLSv1.1" },
58
- new String []{"SSLv3" , "TLSv1" , "TLSv1.1" , "TLSv1.2" }),
58
+ new String []{"SSLv3" , "TLSv1" , "TLSv1.1" , "TLSv1.2" , "TLSv1.3" }),
59
59
TLS_CV_03 ("SSLv3" ,
60
60
supportedProtocols ,
61
61
new String []{"SSLv3" , "TLSv1" }),
@@ -73,7 +73,7 @@ enum ContextVersion {
73
73
new String []{"SSLv3" , "TLSv1" , "TLSv1.1" , "TLSv1.2" , "TLSv1.3" }),
74
74
TLS_CV_08 ("Default" ,
75
75
new String []{"SSLv3" , "TLSv1" , "TLSv1.1" },
76
- new String []{"SSLv3" , "TLSv1" , "TLSv1.1" , "TLSv1.2" });
76
+ new String []{"SSLv3" , "TLSv1" , "TLSv1.1" , "TLSv1.2" , "TLSv1.3" });
77
77
78
78
final String contextVersion ;
79
79
final String [] serverEnabledProtocols ;
0 commit comments