aboutsummaryrefslogtreecommitdiff
path: root/crypto/engine
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2004-06-17 23:35:45 +0000
committerGeoff Thorpe <geoff@openssl.org>2004-06-17 23:35:45 +0000
commit1275c4569e048280dd423b6231a92b4a4fde97e2 (patch)
tree77578eb49cf8bc560bad9185d4a3faa8ea0e9fc3 /crypto/engine
parentafbe74d386d2858e5e9c5839af56daa729172229 (diff)
downloadopenssl-1275c4569e048280dd423b6231a92b4a4fde97e2.zip
openssl-1275c4569e048280dd423b6231a92b4a4fde97e2.tar.gz
openssl-1275c4569e048280dd423b6231a92b4a4fde97e2.tar.bz2
Minor change to group like functions together.
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/engine.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/crypto/engine/engine.h b/crypto/engine/engine.h
index 712687e..86517b8 100644
--- a/crypto/engine/engine.h
+++ b/crypto/engine/engine.h
@@ -477,11 +477,11 @@ int ENGINE_set_ciphers(ENGINE *e, ENGINE_CIPHERS_PTR f);
int ENGINE_set_digests(ENGINE *e, ENGINE_DIGESTS_PTR f);
int ENGINE_set_flags(ENGINE *e, int flags);
int ENGINE_set_cmd_defns(ENGINE *e, const ENGINE_CMD_DEFN *defns);
-/* These functions (and the "get" function lower down) allow control over any
- * per-structure ENGINE data. */
+/* These functions allow control over any per-structure ENGINE data. */
int ENGINE_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func);
int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg);
+void *ENGINE_get_ex_data(const ENGINE *e, int idx);
/* This function cleans up anything that needs it. Eg. the ENGINE_add() function
* automatically ensures the list cleanup function is registered to be called
@@ -514,7 +514,6 @@ const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid);
const EVP_MD *ENGINE_get_digest(ENGINE *e, int nid);
const ENGINE_CMD_DEFN *ENGINE_get_cmd_defns(const ENGINE *e);
int ENGINE_get_flags(const ENGINE *e);
-void *ENGINE_get_ex_data(const ENGINE *e, int idx);
/* FUNCTIONAL functions. These functions deal with ENGINE structures
* that have (or will) be initialised for use. Broadly speaking, the