More CryptoAPI engine code from stable branch.
This commit is contained in:
parent
408f906592
commit
90b96776cd
2 changed files with 6 additions and 0 deletions
|
@ -108,6 +108,9 @@ void ENGINE_load_builtin_engines(void)
|
|||
#ifndef OPENSSL_NO_GMP
|
||||
ENGINE_load_gmp();
|
||||
#endif
|
||||
#endif
|
||||
#if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
|
||||
ENGINE_load_capi();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -340,6 +340,9 @@ void ENGINE_load_gost(void);
|
|||
#endif
|
||||
void ENGINE_load_cryptodev(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