You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2022/01/22 22:37:55 UTC

[commons-codec] branch master updated (afa3687 -> 5024e64)

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

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


    from afa3687  [maven-release-plugin] prepare for next development iteration
     new de35b0b  Add links to 1.16 docs and downloads
     new 5024e64  Add user guide entry for Blake3

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/site/site.xml           |  1 +
 src/site/xdoc/index.xml     |  4 +++-
 src/site/xdoc/userguide.xml | 22 +++++++++++++++++++++-
 3 files changed, 25 insertions(+), 2 deletions(-)

[commons-codec] 01/02: Add links to 1.16 docs and downloads

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

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

commit de35b0bc88545fd6a571c75482969262d81de203
Author: Matt Sicker <ma...@apache.org>
AuthorDate: Sat Jan 22 16:31:04 2022 -0600

    Add links to 1.16 docs and downloads
---
 src/site/site.xml       | 1 +
 src/site/xdoc/index.xml | 4 +++-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/site/site.xml b/src/site/site.xml
index 24f3513..b0378aa 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -28,6 +28,7 @@
             <item name="Download"        href="https://commons.apache.org/codec/download_codec.cgi"/>
             <item name="Users guide"     href="/userguide.html"/>
             <item name="Javadoc current" href="/apidocs/index.html"/>
+            <item name="Javadoc 1.16"    href="/archives/1.16/apidocs/index.html"/>
             <item name="Javadoc 1.15"    href="/archives/1.15/apidocs/index.html"/>
             <item name="Javadoc 1.14"    href="/archives/1.14/apidocs/index.html"/>
             <item name="Javadoc 1.13"    href="/archives/1.13/apidocs/index.html"/>
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index 4e83389..342ecfe 100644
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -72,6 +72,7 @@ The Javadoc API documents are available online:
 </p>
 <ul>
   <li><a href="apidocs/index.html">Javadoc current (git master)</a></li>
+  <li><a href="archives/1.16/apidocs/index.html">Javadoc 1.16</a></li>
   <li><a href="archives/1.15/apidocs/index.html">Javadoc 1.15</a></li>
   <li><a href="archives/1.14/apidocs/index.html">Javadoc 1.14</a></li>
   <li><a href="archives/1.13/apidocs/index.html">Javadoc 1.13</a></li>
@@ -90,7 +91,8 @@ The <a href="scm.html">subversion repository</a> can be
 <!-- ================================================== -->
 <section name="Releases">
 <ul>
-  <li><a href="https://commons.apache.org/codec/download_codec.cgi">Codec 1.15 (mirrors)</a> requires Java 7</li>
+  <li><a href="https://commons.apache.org/codec/download_codec.cgi">Codec 1.16 (mirrors)</a> requires Java 8</li>
+  <li><a href="https://archive.apache.org/dist/commons/codec/">Codec 1.15 (archives)</a> requires Java 7</li>
   <li><a href="https://archive.apache.org/dist/commons/codec/">Codec 1.14 (archives)</a> requires Java 7</li>
   <li><a href="https://archive.apache.org/dist/commons/codec/">Codec 1.13 (archives)</a> requires Java 7</li>
   <li><a href="https://archive.apache.org/dist/commons/codec/">Codec 1.12 (archives)</a> requires Java 7</li>

[commons-codec] 02/02: Add user guide entry for Blake3

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

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

commit 5024e646b87f2efd0cabbeeea4defae720204fec
Author: Matt Sicker <ma...@apache.org>
AuthorDate: Sat Jan 22 16:31:16 2022 -0600

    Add user guide entry for Blake3
---
 src/site/xdoc/userguide.xml | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)

diff --git a/src/site/xdoc/userguide.xml b/src/site/xdoc/userguide.xml
index 36155b5..ef70a9e 100644
--- a/src/site/xdoc/userguide.xml
+++ b/src/site/xdoc/userguide.xml
@@ -100,6 +100,26 @@
               tasks and provides GNU libc crypt(3) compatible password hashing functions.
             </td>
           </tr>
+          <tr>
+            <td width="150">
+              <a href="apidocs/org/apache/commons/codec/digest/Blake3.html">Blake3</a>
+            </td>
+            <td>
+              Provides a pure Java implementation of the
+              <a href="https://github.com/BLAKE3-team/BLAKE3">Blake3 hash function</a> which can be used for computing
+              <a href="https://en.wikipedia.org/wiki/Cryptographic_hash_function">cryptographic hashes</a>
+              (message digests) which are extensible to arbitrary output lengths (known as an <i>extensible-output
+              function</i> or <i>XOF</i>), computing
+              <a href="https://en.wikipedia.org/wiki/Message_authentication_code">message authentication codes</a>
+              using a 32 byte (256-bit) secret key, computing subkeys from a primary key using a
+              <a href="https://en.wikipedia.org/wiki/Key_derivation_function">key derivation function</a>, and can be
+              used as the basis for a
+              <a href="https://en.wikipedia.org/wiki/Cryptographically-secure_pseudorandom_number_generator">
+              cryptographically-secure pseudorandom number generator</a>. <strong>WARNING:</strong> Blake3 is
+              <em>not</em> a password hashing algorithm! An algorithm such as
+              <a href="https://github.com/P-H-C/phc-winner-argon2">Argon2</a> is more appropriate for password hashing.
+            </td>
+          </tr>
         </table>
       </subsection>
       <subsection name="Language Encoders">
@@ -224,4 +244,4 @@
     </section>
     <!-- ================================================== -->
   </body>
-</document>
\ No newline at end of file
+</document>