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 2022/12/10 01:40:23 UTC

[commons-crypto] branch master updated (9d97ebe -> 26c0a43)

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-crypto.git


    from 9d97ebe  Add AES utility class
     new 8fdf651  Remove unused import
     new 26c0a43  Document Animal Sniffer failures and revert version bump.

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:
 pom.xml                                                                | 3 ++-
 src/changes/changes.xml                                                | 1 -
 .../java/org/apache/commons/crypto/stream/CtrCryptoStreamTest.java     | 1 -
 3 files changed, 2 insertions(+), 3 deletions(-)


[commons-crypto] 01/02: Remove unused import

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-crypto.git

commit 8fdf651ce3ecac82efd84fa73f91f762c12453bb
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Dec 9 20:33:03 2022 -0500

    Remove unused import
---
 src/test/java/org/apache/commons/crypto/stream/CtrCryptoStreamTest.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/crypto/stream/CtrCryptoStreamTest.java b/src/test/java/org/apache/commons/crypto/stream/CtrCryptoStreamTest.java
index 832466a..390f11e 100644
--- a/src/test/java/org/apache/commons/crypto/stream/CtrCryptoStreamTest.java
+++ b/src/test/java/org/apache/commons/crypto/stream/CtrCryptoStreamTest.java
@@ -34,7 +34,6 @@ import java.util.concurrent.TimeUnit;
 import javax.crypto.ShortBufferException;
 import javax.crypto.spec.IvParameterSpec;
 
-import org.apache.commons.crypto.Crypto;
 import org.apache.commons.crypto.cipher.AbstractCipherTest;
 import org.apache.commons.crypto.cipher.CryptoCipher;
 import org.apache.commons.crypto.stream.input.ChannelInput;


[commons-crypto] 02/02: Document Animal Sniffer failures and revert version bump.

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-crypto.git

commit 26c0a4358d5c823288517efa30a1543fcb57d663
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Dec 9 20:40:11 2022 -0500

    Document Animal Sniffer failures and revert version bump.
---
 pom.xml                 | 3 ++-
 src/changes/changes.xml | 1 -
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index be96cc5..18edd4e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -149,7 +149,8 @@ The following provides more details on the included cryptographic software:
     <japicmp.skip>false</japicmp.skip>
     <commons.japicmp.version>0.17.1</commons.japicmp.version>
     <commons.spotbugs.version>4.7.3.0</commons.spotbugs.version>
-    <commons.animal-sniffer.version>1.22</commons.animal-sniffer.version>
+    <!-- 1.21 and 1.22 cause failures -->
+    <commons.animal-sniffer.version>1.20</commons.animal-sniffer.version>
     
     <commons.release.isDistModule>true</commons.release.isDistModule>
     <commons.releaseManagerName>Gary Gregory</commons.releaseManagerName>    
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 4885a49..0a7e8d3 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -97,7 +97,6 @@
       <action                    type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump commons-parent from 52 to 54 #182</action>
       <action                    type="update" dev="ggregory" due-to="Gary Gregory">Bump commons.surefire.version from 3.0.0-M5 to 3.0.0-M7.</action>
       <action                    type="update" dev="ggregory" due-to="Dependabot">Bump maven-resources-plugin from 3.2.0 to 3.3.0 #172.</action>
-      <action                    type="update" dev="ggregory" due-to="Gary Gregory">Bump commons.animal-sniffer.version from 1.20 to 1.22.</action>
     </release>
     <release version="1.1.0" date="2020-08-28" description="Minor release (Java 8 and OpenSSL 1.1.1)">
       <action issue="CRYPTO-59" type="add">Support Galois/Counter Mode (GCM).</action>