diff options
author | 2003-11-11 22:15:18 +0000 | |
---|---|---|
committer | 2003-11-11 22:15:18 +0000 | |
commit | cdc51833b6c06c4d2bb61dab574d6d6c40e4a806 (patch) | |
tree | f9fc9a67a1a98fe5ec5af41fc8a54135caae46f8 /lib/libssl/src/crypto/engine/engine.h | |
parent | import 0.9.7c (diff) | |
download | wireguard-openbsd-cdc51833b6c06c4d2bb61dab574d6d6c40e4a806.tar.xz wireguard-openbsd-cdc51833b6c06c4d2bb61dab574d6d6c40e4a806.zip |
merge 0.9.7c; minor bugsfixes;
API addition: ERR_release_err_state_table
[make includes before you build libssl/libcrypto]
Diffstat (limited to 'lib/libssl/src/crypto/engine/engine.h')
-rw-r--r-- | lib/libssl/src/crypto/engine/engine.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/engine/engine.h b/lib/libssl/src/crypto/engine/engine.h index 8686879e1a3..9c3ab182d37 100644 --- a/lib/libssl/src/crypto/engine/engine.h +++ b/lib/libssl/src/crypto/engine/engine.h @@ -538,10 +538,10 @@ void ENGINE_add_conf_module(void); /**************************/ /* Binary/behaviour compatibility levels */ -#define OSSL_DYNAMIC_VERSION (unsigned long)0x00010100 +#define OSSL_DYNAMIC_VERSION (unsigned long)0x00010200 /* Binary versions older than this are too old for us (whether we're a loader or * a loadee) */ -#define OSSL_DYNAMIC_OLDEST (unsigned long)0x00010100 +#define OSSL_DYNAMIC_OLDEST (unsigned long)0x00010200 /* When compiling an ENGINE entirely as an external shared library, loadable by * the "dynamic" ENGINE, these types are needed. The 'dynamic_fns' structure @@ -630,6 +630,10 @@ typedef int (*dynamic_bind_engine)(ENGINE *e, const char *id, if(!fn(e,id)) return 0; \ return 1; } +#if defined(__OpenBSD__) || defined(__FreeBSD__) +void ENGINE_setup_bsd_cryptodev(void); +#endif + /* BEGIN ERROR CODES */ /* The following lines are auto generated by the script mkerr.pl. Any changes * made after this point may be overwritten when the script is next run. |