src/java.base/share/classes/sun/security/rsa/MGF1.java
branchJDK-8145252-TLS13-branch
changeset 56592 b1902b22005e
parent 56542 56aaa6cb3693
parent 50204 3195a713e24d
--- a/src/java.base/share/classes/sun/security/rsa/MGF1.java	Tue May 22 20:36:31 2018 +0800
+++ b/src/java.base/share/classes/sun/security/rsa/MGF1.java	Tue May 22 16:36:02 2018 -0700
@@ -28,9 +28,10 @@
 
 /**
  * This class implements the MGF1 mask generation function defined in PKCS#1
- * v2.2 B.2.1. A mask generation function takes an octet string of variable
- * length and a desired output length as input and outputs an octet string of
- * the desired length. MGF1 is a mask generation function based on a hash
+ * v2.2 B.2.1 (https://tools.ietf.org/html/rfc8017#appendix-B.2.1). A mask
+ * generation function takes an octet string of variable length and a
+ * desired output length as input and outputs an octet string of the
+ * desired length. MGF1 is a mask generation function based on a hash
  * function, i.e. message digest algorithm.
  *
  * @since   11