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 054b9e0 Javadoc 054b9e0 is described below commit 054b9e017a0ccfac13272872e025ad6263d35ef1 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Dec 18 16:59:50 2022 -0500 Javadoc --- src/main/java/org/apache/commons/crypto/cipher/OpenSslNative.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/crypto/cipher/OpenSslNative.java b/src/main/java/org/apache/commons/crypto/cipher/OpenSslNative.java index b213e97..dc62706 100644 --- a/src/main/java/org/apache/commons/crypto/cipher/OpenSslNative.java +++ b/src/main/java/org/apache/commons/crypto/cipher/OpenSslNative.java @@ -20,8 +20,8 @@ package org.apache.commons.crypto.cipher; import java.nio.ByteBuffer; /** - * JNI interface of {@link OpenSsl} implementation. The native method in this - * class is defined in OpenSslNative.h (generated by javah). + * JNI implementation for OpenSSL 1.x called from {@link OpenSsl}. The native methods in this + * class are defined in OpenSslNative.h (generated by javah). */ final class OpenSslNative { @@ -154,7 +154,7 @@ final class OpenSslNative { ByteBuffer output, int outputOffset, int maxOutputLength); /** - * Hides private constructor from external access. + * Hides this constructor from external access. */ private OpenSslNative() { }