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 1f32f54  Javadoc
1f32f54 is described below

commit 1f32f543c8c790b09b1bc99c521fbc801584b0bf
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Oct 21 11:24:36 2023 -0400

    Javadoc
---
 .../org/apache/commons/crypto/jna/OpenSslInterfaceNativeJna.java  | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/commons/crypto/jna/OpenSslInterfaceNativeJna.java 
b/src/main/java/org/apache/commons/crypto/jna/OpenSslInterfaceNativeJna.java
index e680348..928e58c 100644
--- a/src/main/java/org/apache/commons/crypto/jna/OpenSslInterfaceNativeJna.java
+++ b/src/main/java/org/apache/commons/crypto/jna/OpenSslInterfaceNativeJna.java
@@ -25,13 +25,19 @@ import com.sun.jna.ptr.PointerByReference;
 
 /**
  * This interface defines the API for the native code.
+ * <p>
  * All methods are listed here; individual implementations may not support 
them all.
+ * </p>
  */
 interface OpenSslInterfaceNativeJna {
 
     PointerByReference _ENGINE_by_id(final String string);
 
-    /** TODO Appears to be deprecated as of OpenSSL 1.1.0. */
+    /** 
+     * TODO Appears to be deprecated as of OpenSSL 1.1.0.
+     *
+     * @return See OpenSSL. 
+     */
     int _ENGINE_cleanup();
 
     int _ENGINE_finish(final PointerByReference rdrandEngine);

Reply via email to