@@ -18,7 +18,7 @@ static VALUE mKDF, eKDF;
18
18
* of _length_ bytes.
19
19
*
20
20
* For more information about PBKDF2, see RFC 2898 Section 5.2
21
- * (https://tools.ietf .org/html /rfc2898#section-5.2).
21
+ * (https://www.rfc-editor .org/rfc /rfc2898#section-5.2).
22
22
*
23
23
* === Parameters
24
24
* pass :: The password.
@@ -81,10 +81,10 @@ kdf_pbkdf2_hmac(int argc, VALUE *argv, VALUE self)
81
81
* bcrypt.
82
82
*
83
83
* The keyword arguments _N_, _r_ and _p_ can be used to tune scrypt. RFC 7914
84
- * (published on 2016-08, https://tools.ietf .org/html /rfc7914#section-2) states
84
+ * (published on 2016-08, https://www.rfc-editor .org/rfc /rfc7914#section-2) states
85
85
* that using values r=8 and p=1 appears to yield good results.
86
86
*
87
- * See RFC 7914 (https://tools.ietf .org/html /rfc7914) for more information.
87
+ * See RFC 7914 (https://www.rfc-editor .org/rfc /rfc7914) for more information.
88
88
*
89
89
* === Parameters
90
90
* pass :: Passphrase.
@@ -147,7 +147,7 @@ kdf_scrypt(int argc, VALUE *argv, VALUE self)
147
147
* KDF.hkdf(ikm, salt:, info:, length:, hash:) -> String
148
148
*
149
149
* HMAC-based Extract-and-Expand Key Derivation Function (HKDF) as specified in
150
- * {RFC 5869}[https://tools.ietf .org/html /rfc5869].
150
+ * {RFC 5869}[https://www.rfc-editor .org/rfc /rfc5869].
151
151
*
152
152
* New in OpenSSL 1.1.0.
153
153
*
@@ -165,7 +165,7 @@ kdf_scrypt(int argc, VALUE *argv, VALUE self)
165
165
* The hash function.
166
166
*
167
167
* === Example
168
- * # The values from https://datatracker.ietf .org/doc/html /rfc5869#appendix-A.1
168
+ * # The values from https://www.rfc-editor .org/rfc /rfc5869#appendix-A.1
169
169
* ikm = ["0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b"].pack("H*")
170
170
* salt = ["000102030405060708090a0b0c"].pack("H*")
171
171
* info = ["f0f1f2f3f4f5f6f7f8f9"].pack("H*")
0 commit comments