diff options
author | djm <> | 2012-10-13 21:25:14 +0000 |
---|---|---|
committer | djm <> | 2012-10-13 21:25:14 +0000 |
commit | 93723b50b639d8dc717bc1bf463fd46e1b321239 (patch) | |
tree | 281e0a29ae8f87a8c47fbd4deaa1f3d48b8cc5c1 /src/lib/libcrypto/engine/engine.h | |
parent | 65e72ac55a6405783db7a12d7e35a7561d46005b (diff) | |
download | openbsd-93723b50b639d8dc717bc1bf463fd46e1b321239.tar.gz openbsd-93723b50b639d8dc717bc1bf463fd46e1b321239.tar.bz2 openbsd-93723b50b639d8dc717bc1bf463fd46e1b321239.zip |
resolve conflicts
Diffstat (limited to 'src/lib/libcrypto/engine/engine.h')
-rw-r--r-- | src/lib/libcrypto/engine/engine.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/lib/libcrypto/engine/engine.h b/src/lib/libcrypto/engine/engine.h index 9d73abac8e..f8be497724 100644 --- a/src/lib/libcrypto/engine/engine.h +++ b/src/lib/libcrypto/engine/engine.h | |||
@@ -141,6 +141,13 @@ extern "C" { | |||
141 | * the existing ENGINE's structural reference count. */ | 141 | * the existing ENGINE's structural reference count. */ |
142 | #define ENGINE_FLAGS_BY_ID_COPY (int)0x0004 | 142 | #define ENGINE_FLAGS_BY_ID_COPY (int)0x0004 |
143 | 143 | ||
144 | /* This flag if for an ENGINE that does not want its methods registered as | ||
145 | * part of ENGINE_register_all_complete() for example if the methods are | ||
146 | * not usable as default methods. | ||
147 | */ | ||
148 | |||
149 | #define ENGINE_FLAGS_NO_REGISTER_ALL (int)0x0008 | ||
150 | |||
144 | /* ENGINEs can support their own command types, and these flags are used in | 151 | /* ENGINEs can support their own command types, and these flags are used in |
145 | * ENGINE_CTRL_GET_CMD_FLAGS to indicate to the caller what kind of input each | 152 | * ENGINE_CTRL_GET_CMD_FLAGS to indicate to the caller what kind of input each |
146 | * command expects. Currently only numeric and string input is supported. If a | 153 | * command expects. Currently only numeric and string input is supported. If a |
@@ -344,7 +351,8 @@ void ENGINE_load_gost(void); | |||
344 | #endif | 351 | #endif |
345 | #endif | 352 | #endif |
346 | void ENGINE_load_cryptodev(void); | 353 | void ENGINE_load_cryptodev(void); |
347 | void ENGINE_load_aesni(void); | 354 | void ENGINE_load_rsax(void); |
355 | void ENGINE_load_rdrand(void); | ||
348 | void ENGINE_load_builtin_engines(void); | 356 | void ENGINE_load_builtin_engines(void); |
349 | 357 | ||
350 | /* Get and set global flags (ENGINE_TABLE_FLAG_***) for the implementation | 358 | /* Get and set global flags (ENGINE_TABLE_FLAG_***) for the implementation |