Load CryptoAPI engine if supported.
This commit is contained in:
parent
bb592c75e7
commit
203ac694e3
2 changed files with 6 additions and 0 deletions
|
@ -107,6 +107,9 @@ void ENGINE_load_builtin_engines(void)
|
|||
#if defined(__OpenBSD__) || defined(__FreeBSD__)
|
||||
ENGINE_load_cryptodev();
|
||||
#endif
|
||||
#endif
|
||||
#if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
|
||||
ENGINE_load_capi();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -334,6 +334,9 @@ void ENGINE_load_ubsec(void);
|
|||
void ENGINE_load_cryptodev(void);
|
||||
void ENGINE_load_padlock(void);
|
||||
void ENGINE_load_builtin_engines(void);
|
||||
#ifndef OPENSSL_NO_CAPIENG
|
||||
void ENGINE_load_capi(void);
|
||||
#endif
|
||||
|
||||
/* Get and set global flags (ENGINE_TABLE_FLAG_***) for the implementation
|
||||
* "registry" handling. */
|
||||
|
|
Loading…
Reference in a new issue