Skip to content

Commit 39c9e9d

Browse files
committedFeb 27, 2024
8326000: Remove obsolete comments for class sun.security.ssl.SunJSSE
Backport-of: c2d9fa26ce903be7c86a47db5ff289cdb9de3a62
1 parent 075c56f commit 39c9e9d

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed
 

‎src/java.base/share/classes/sun/security/ssl/SunJSSE.java

+1-20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -31,25 +31,6 @@
3131

3232
/**
3333
* The JSSE provider.
34-
*
35-
* SunJSSE now supports an experimental FIPS compliant mode when used with an
36-
* appropriate FIPS certified crypto provider. In FIPS mode, we:
37-
* . allow only TLS 1.0 or later
38-
* . allow only FIPS approved ciphersuites
39-
* . perform all crypto in the FIPS crypto provider
40-
*
41-
* It is currently not possible to use both FIPS compliant SunJSSE and
42-
* standard JSSE at the same time because of the various static data structures
43-
* we use.
44-
*
45-
* However, we do want to allow FIPS mode to be enabled at runtime and without
46-
* editing the java.security file. That means we need to allow
47-
* Security.removeProvider("SunJSSE") to work, which creates an instance of
48-
* this class in non-FIPS mode. That is why we delay the selection of the mode
49-
* as long as possible. This is until we open an SSL/TLS connection and the
50-
* data structures need to be initialized or until SunJSSE is initialized in
51-
* FIPS mode.
52-
*
5334
*/
5435
public class SunJSSE extends java.security.Provider {
5536

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Feb 27, 2024

@openjdk-notifier[bot]
Please sign in to comment.