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
The following commit(s) were added to refs/heads/master by this push: new 99347bfb Javadoc 99347bfb is described below commit 99347bfb5c1231e20cb8b6c03c099b078e3e4af1 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Dec 14 10:26:19 2023 -0500 Javadoc --- src/main/java/org/apache/commons/crypto/stream/CryptoInputStream.java | 2 +- .../java/org/apache/commons/crypto/stream/CryptoOutputStream.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/crypto/stream/CryptoInputStream.java b/src/main/java/org/apache/commons/crypto/stream/CryptoInputStream.java index e04a855e..5d32d1dc 100644 --- a/src/main/java/org/apache/commons/crypto/stream/CryptoInputStream.java +++ b/src/main/java/org/apache/commons/crypto/stream/CryptoInputStream.java @@ -118,7 +118,7 @@ public class CryptoInputStream extends InputStream implements ReadableByteChanne /** Crypto key for the cipher. */ final Key key; // package protected for access by crypto classes; do not expose further - /** the algorithm parameters */ + /** The algorithm parameters */ private final AlgorithmParameterSpec params; /** Flag to mark whether the input stream is closed. */ diff --git a/src/main/java/org/apache/commons/crypto/stream/CryptoOutputStream.java b/src/main/java/org/apache/commons/crypto/stream/CryptoOutputStream.java index ecc9da99..d1128982 100644 --- a/src/main/java/org/apache/commons/crypto/stream/CryptoOutputStream.java +++ b/src/main/java/org/apache/commons/crypto/stream/CryptoOutputStream.java @@ -55,7 +55,7 @@ public class CryptoOutputStream extends OutputStream implements /** The output. */ final Output output; // package protected for access by rypto classes; do not expose further - /** the CryptoCipher instance */ + /** The CryptoCipher instance */ final CryptoCipher cipher; // package protected for access by crypto classes; do not expose further /** The buffer size. */ @@ -64,7 +64,7 @@ public class CryptoOutputStream extends OutputStream implements /** Crypto key for the cipher. */ final Key key; // package protected for access by crypto classes; do not expose further - /** the algorithm parameters */ + /** The algorithm parameters */ private final AlgorithmParameterSpec params; /** Flag to mark whether the output stream is closed. */