PBKDF2SHA512: update URLs in JavaDoc

The IETF `https:` URLs are what the previous `http:` URLs redirect to.
The Cryptofreak URL is the same but with `https:`.
This commit is contained in:
Sean Gilligan 2023-09-08 11:03:05 -07:00 committed by Andreas Schildbach
parent f7d2b38aae
commit b90af12aea

View File

@ -34,9 +34,9 @@ import java.nio.charset.StandardCharsets;
* This is a clean-room implementation of PBKDF2 using RFC 2898 as a reference.
* Modified to use SHA-512 by Ken Sedgwick (ken@bonsai.com)
* <p>
* This code passes all <a href="http://tools.ietf.org/html/rfc6070">RFC 6070 test vectors</a>
* @see <a href="http://tools.ietf.org/html/rfc2898#section-5.2">RFC 2898 (Section 5.2)</a>
* @see <a href="http://cryptofreek.org/2012/11/29/pbkdf2-pure-java-implementation/">PBKDF2 Pure Java Implementation by Cryptofreek</a>
* This code passes all <a href="https://datatracker.ietf.org/doc/html/rfc6070">RFC 6070 test vectors</a>
* @see <a href="https://datatracker.ietf.org/doc/html/rfc2898#section-5.2">RFC 2898 (Section 5.2)</a>
* @see <a href="https://cryptofreek.org/2012/11/29/pbkdf2-pure-java-implementation/">PBKDF2 Pure Java Implementation by Cryptofreek</a>
*/
public class PBKDF2SHA512 {
public static byte[] derive(String P, String S, int c, int dkLen) {