You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/06/17 18:42:41 UTC

[commons-codec] branch master updated (8c08eea2 -> 0901537b)

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git


    from 8c08eea2 Whitespace
     new b57e84b2 Javadoc
     new 0901537b Javadoc

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/main/java/org/apache/commons/codec/digest/Blake3.java | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)


[commons-codec] 01/02: Javadoc

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git

commit b57e84b2a77af22bc619797719a7c64bc74249bf
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Jun 17 14:41:20 2023 -0400

    Javadoc
---
 src/main/java/org/apache/commons/codec/digest/Blake3.java | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/codec/digest/Blake3.java b/src/main/java/org/apache/commons/codec/digest/Blake3.java
index 7af24a4e..cc083806 100644
--- a/src/main/java/org/apache/commons/codec/digest/Blake3.java
+++ b/src/main/java/org/apache/commons/codec/digest/Blake3.java
@@ -83,7 +83,9 @@ public final class Blake3 {
     private static final int CHUNK_LEN = 1024;
     private static final int CHAINING_VALUE_INTS = 8;
 
-    // standard hash key used for plain hashes; same initialization vector as Blake2s
+    /**
+     * Standard hash key used for plain hashes; same initialization vector as Blake2s.
+     */
     private static final int[] IV =
             { 0x6A09E667, 0xBB67AE85, 0x3C6EF372, 0xA54FF53A, 0x510E527F, 0x9B05688C, 0x1F83D9AB, 0x5BE0CD19 };
 
@@ -294,7 +296,9 @@ public final class Blake3 {
         return values;
     }
 
-    // The mixing function, G, which mixes either a column or a diagonal.
+    /**
+     * The mixing function, G, which mixes either a column or a diagonal.
+     */
     private static void g(
             final int[] state, final int a, final int b, final int c, final int d, final int mx, final int my) {
         state[a] += state[b] + mx;


[commons-codec] 02/02: Javadoc

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git

commit 0901537b836062ca189d55ee34bb47dbcf0e51f1
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Jun 17 14:41:20 2023 -0400

    Javadoc