You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Operations to simplify common {@link java.security.MessageDigest} tasks. This class is immutable and thread-safe. However the MessageDigest instances it
45
-
* creates generally won't be.
44
+
* Operations to simplify common {@link MessageDigest} tasks. This class is immutable and thread-safe. However the {@link MessageDigest} instances
45
+
* it creates generally won't be.
46
46
* <p>
47
47
* The {@link MessageDigestAlgorithms} class provides constants for standard digest algorithms that can be used with the {@link #getDigest(String)} method and
48
48
* other methods that require the Digest algorithm name.
49
49
* </p>
50
50
* <p>
51
-
* Note: The class has shorthand methods for all the algorithms present as standard in Java 6. This approach requires lots of methods for each algorithm, and
51
+
* Note: The class has shorthand methods for all the algorithms present as standard in Java 8. This approach requires lots of methods for each algorithm, and
52
52
* quickly becomes unwieldy. The following code works with all algorithms:
53
53
* </p>
54
54
*
@@ -58,7 +58,11 @@
58
58
* byte [] digest = new DigestUtils(SHA_224).digest(dataToDigest);
59
59
* String hdigest = new DigestUtils(SHA_224).digestAsHex(new File("pom.xml"));
60
60
* </pre>
61
-
*
61
+
* <p>
62
+
* See <a href="https://docs.oracle.com/javase/8/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA">Appendix A in the Java Cryptography Architecture
63
+
* Reference Guide</a> for information about standard algorithm names.
0 commit comments