diff --git a/src/java.base/share/classes/java/security/AlgorithmParameters.java b/src/java.base/share/classes/java/security/AlgorithmParameters.java
index 1fdb47077cf..7747d642c20 100644
--- a/src/java.base/share/classes/java/security/AlgorithmParameters.java
+++ b/src/java.base/share/classes/java/security/AlgorithmParameters.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2024, 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
@@ -48,12 +48,19 @@ import java.util.Objects;
* obtained via a call to {@code getEncoded}.
*
*
Every implementation of the Java platform is required to support the
- * following standard {@code AlgorithmParameters} algorithms:
+ * following standard {@code AlgorithmParameters} algorithms. For the "EC"
+ * algorithm, implementations must support the curves in parentheses. For the
+ * "RSASSA-PSS" algorithm, implementations must support the parameters in
+ * parentheses.
*
* - {@code AES}
+ * - {@code ChaCha20-Poly1305}
* - {@code DESede}
* - {@code DiffieHellman}
* - {@code DSA}
+ * - {@code EC} (secp256r1, secp384r1)
+ * - {@code RSASSA-PSS} (MGF1 mask generation function and SHA-256 or SHA-384
+ * hash algorithms)
*
* These algorithms are described in the
diff --git a/src/java.base/share/classes/java/security/KeyFactory.java b/src/java.base/share/classes/java/security/KeyFactory.java
index 5a9394d283b..7c51faf6aa2 100644
--- a/src/java.base/share/classes/java/security/KeyFactory.java
+++ b/src/java.base/share/classes/java/security/KeyFactory.java
@@ -72,7 +72,10 @@ import sun.security.jca.GetInstance.Instance;
*
* - {@code DiffieHellman}
* - {@code DSA}
+ * - {@code EC}
* - {@code RSA}
+ * - {@code RSASSA-PSS}
+ * - {@code X25519}
*
* These algorithms are described in the
diff --git a/src/java.base/share/classes/java/security/KeyPairGenerator.java b/src/java.base/share/classes/java/security/KeyPairGenerator.java
index 31c3d8d382f..3583248f81e 100644
--- a/src/java.base/share/classes/java/security/KeyPairGenerator.java
+++ b/src/java.base/share/classes/java/security/KeyPairGenerator.java
@@ -113,12 +113,16 @@ import sun.security.util.Debug;
* supply their own implementations of key pair generators.
*
* Every implementation of the Java platform is required to support the
- * following standard {@code KeyPairGenerator} algorithms and keysizes in
- * parentheses:
+ * following standard {@code KeyPairGenerator} algorithms. For the "EC"
+ * algorithm, implementations must support the curves in parentheses. For other
+ * algorithms, implementations must support the key sizes in parentheses.
*
- * - {@code DiffieHellman} (1024, 2048, 4096)
+ * - {@code DiffieHellman} (1024, 2048, 3072, 4096)
* - {@code DSA} (1024, 2048)
- * - {@code RSA} (1024, 2048, 4096)
+ * - {@code EC} (secp256r1, secp384r1)
+ * - {@code RSA} (1024, 2048, 3072, 4096)
+ * - {@code RSASSA-PSS} (2048, 3072, 4096)
+ * - {@code X25519}
*
* These algorithms are described in the
diff --git a/src/java.base/share/classes/java/security/MessageDigest.java b/src/java.base/share/classes/java/security/MessageDigest.java
index 46455e184b0..f83c4ed6d3b 100644
--- a/src/java.base/share/classes/java/security/MessageDigest.java
+++ b/src/java.base/share/classes/java/security/MessageDigest.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2023, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2024, 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
@@ -87,6 +87,7 @@ import javax.crypto.SecretKey;
*
* - {@code SHA-1}
* - {@code SHA-256}
+ * - {@code SHA-384}
*
* These algorithms are described in the
diff --git a/src/java.base/share/classes/java/security/Signature.java b/src/java.base/share/classes/java/security/Signature.java
index 482db8d4015..006188aac61 100644
--- a/src/java.base/share/classes/java/security/Signature.java
+++ b/src/java.base/share/classes/java/security/Signature.java
@@ -100,12 +100,20 @@ import sun.security.util.KnownOIDs;
* supply their own implementations of digital signature algorithms.
*
* Every implementation of the Java platform is required to support the
- * following standard {@code Signature} algorithms:
+ * following standard {@code Signature} algorithms. For the "RSASSA-PSS"
+ * algorithm, implementations must support the parameters in parentheses. For
+ * the "SHA256withECDSA" and "SHA384withECDSA" algorithms, implementations must
+ * support the curves in parentheses.
*
+ * - {@code RSASSA-PSS} (MGF1 mask generation function and SHA-256 or SHA-384
+ * hash algorithms)
* - {@code SHA1withDSA}
* - {@code SHA256withDSA}
+ * - {@code SHA256withECDSA} (secp256r1)
+ * - {@code SHA384withECDSA} (secp384r1)
* - {@code SHA1withRSA}
* - {@code SHA256withRSA}
+ * - {@code SHA384withRSA}
*
* These algorithms are described in the
diff --git a/src/java.base/share/classes/javax/crypto/Cipher.java b/src/java.base/share/classes/javax/crypto/Cipher.java
index 2cfdcf55823..8187f863b5c 100644
--- a/src/java.base/share/classes/javax/crypto/Cipher.java
+++ b/src/java.base/share/classes/javax/crypto/Cipher.java
@@ -148,7 +148,8 @@ import sun.security.util.KnownOIDs;
* {@code AES/CBC/PKCS5Padding} (128)
* {@code AES/ECB/NoPadding} (128)
* {@code AES/ECB/PKCS5Padding} (128)
- * {@code AES/GCM/NoPadding} (128)
+ * {@code AES/GCM/NoPadding} (128, 256)
+ * {@code ChaCha20-Poly1305}
* {@code DESede/CBC/NoPadding} (168)
* {@code DESede/CBC/PKCS5Padding} (168)
* {@code DESede/ECB/NoPadding} (168)
diff --git a/src/java.base/share/classes/javax/crypto/KeyAgreement.java b/src/java.base/share/classes/javax/crypto/KeyAgreement.java
index 8a055b6d809..5e2ceb185aa 100644
--- a/src/java.base/share/classes/javax/crypto/KeyAgreement.java
+++ b/src/java.base/share/classes/javax/crypto/KeyAgreement.java
@@ -57,11 +57,14 @@ import sun.security.jca.GetInstance.Instance;
* specific or as specified by the standard key agreement algorithm.
*
* Every implementation of the Java platform is required to support the
- * following standard {@code KeyAgreement} algorithm:
+ * following standard {@code KeyAgreement} algorithms. For the "ECDH"
+ * algorithm, implementations must support the curves in parentheses.
*
* - {@code DiffieHellman}
+ * - {@code ECDH} (secp256r1, secp384r1)
+ * - {@code X25519}
*
- * This algorithm is described in the
* KeyAgreement section of the
* Java Security Standard Algorithm Names Specification.
diff --git a/src/java.base/share/classes/javax/crypto/KeyGenerator.java b/src/java.base/share/classes/javax/crypto/KeyGenerator.java
index 0826bf2adb5..ad112e6ffeb 100644
--- a/src/java.base/share/classes/javax/crypto/KeyGenerator.java
+++ b/src/java.base/share/classes/javax/crypto/KeyGenerator.java
@@ -96,7 +96,8 @@ import sun.security.util.Debug;
* following standard {@code KeyGenerator} algorithms with the keysizes in
* parentheses:
*
- * - {@code AES} (128)
+ * - {@code AES} (128, 256)
+ * - {@code ChaCha20}
* - {@code DESede} (168)
* - {@code HmacSHA1}
* - {@code HmacSHA256}
diff --git a/src/java.base/share/classes/javax/net/ssl/SSLContext.java b/src/java.base/share/classes/javax/net/ssl/SSLContext.java
index 0c2087efa88..861c7645b73 100644
--- a/src/java.base/share/classes/javax/net/ssl/SSLContext.java
+++ b/src/java.base/share/classes/javax/net/ssl/SSLContext.java
@@ -39,11 +39,12 @@ import sun.security.jca.GetInstance;
* secure random bytes.
*
* Every implementation of the Java platform is required to support the
- * following standard {@code SSLContext} protocol:
+ * following standard {@code SSLContext} protocols:
*
* - {@code TLSv1.2}
+ * - {@code TLSv1.3}
*
- * This protocol is described in the
* SSLContext section of the
* Java Security Standard Algorithm Names Specification.