Skip to content

Commit 8e1652a

Browse files
committed
Update Javadoc for Java 8
1 parent a38cf23 commit 8e1652a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/main/java/org/apache/commons/codec/digest

src/main/java/org/apache/commons/codec/digest/Blake3.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* Blake3 keyed hashes have the same performance as plain hashes; the key is used in initialization in place of a
4040
* standard initialization vector used for plain hashing.</p>
4141
* <pre>{@code
42-
* SecureRandom random = new SecureRandom(); // or SecureRandom.getInstanceStrong() in Java 8+
42+
* SecureRandom random = SecureRandom.getInstanceStrong();
4343
* byte[] key = new byte[32];
4444
* random.nextBytes(key);
4545
* Blake3 hasher = Blake3.initKeyedHash(key);

0 commit comments

Comments
 (0)