8280949: Correct the references for the Java Security Standard Algorithm Names specification

Reviewed-by: mullan
This commit is contained in:
Xue-Lei Andrew Fan 2022-01-31 20:25:50 +00:00
parent 319b77492f
commit f991891b0b
6 changed files with 61 additions and 61 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2021, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -327,9 +327,9 @@ public abstract class SSLSocket extends Socket
* The returned array includes cipher suites from the list of standard
* cipher suite names in the <a href=
* "{@docRoot}/../specs/security/standard-names.html#jsse-cipher-suite-names">
* JSSE Cipher Suite Names</a> section of the Java Cryptography
* Architecture Standard Algorithm Name Documentation, and may also
* include other cipher suites that the provider supports.
* JSSE Cipher Suite Names</a> section of the Java Security Standard
* Algorithm Names Specification, and may also include other cipher
* suites that the provider supports.
*
* @return an array of cipher suite names
* @see #getEnabledCipherSuites()
@ -353,9 +353,9 @@ public abstract class SSLSocket extends Socket
* The returned array includes cipher suites from the list of standard
* cipher suite names in the <a href=
* "{@docRoot}/../specs/security/standard-names.html#jsse-cipher-suite-names">
* JSSE Cipher Suite Names</a> section of the Java Cryptography
* Architecture Standard Algorithm Name Documentation, and may also
* include other cipher suites that the provider supports.
* JSSE Cipher Suite Names</a> section of the Java Security Standard
* Algorithm Names Specification, and may also include other cipher
* suites that the provider supports.
*
* @return an array of cipher suite names
* @see #getSupportedCipherSuites()
@ -375,10 +375,10 @@ public abstract class SSLSocket extends Socket
* Note that the standard list of cipher suite names may be found in the
* <a href=
* "{@docRoot}/../specs/security/standard-names.html#jsse-cipher-suite-names">
* JSSE Cipher Suite Names</a> section of the Java Cryptography
* Architecture Standard Algorithm Name Documentation. Providers
* may support cipher suite names not found in this list or might not
* use the recommended name for a certain cipher suite.
* JSSE Cipher Suite Names</a> section of the Java Security Standard
* Algorithm Names Specification. Providers may support cipher suite
* names not found in this list or might not use the recommended name
* for a certain cipher suite.
* <P>
* See {@link #getEnabledCipherSuites()} for more information
* on why a specific ciphersuite may never be used on a connection.