--- 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