mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Increase required openssl version for openssl engines implementation
This commit is contained in:
parent
ff3910eb86
commit
dec532a8eb
@ -3115,6 +3115,7 @@ bool IsEncryptedK(BUF *b, bool private_key)
|
||||
K *OpensslEngineToK(char *key_file_name, char *engine_name)
|
||||
{
|
||||
#ifdef UNIX_LINUX
|
||||
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
|
||||
K *k;
|
||||
ENGINE_load_dynamic();
|
||||
ENGINE *engine = ENGINE_by_id("tpm2tss");
|
||||
@ -3125,6 +3126,7 @@ K *OpensslEngineToK(char *key_file_name, char *engine_name)
|
||||
k->pkey = pkey;
|
||||
k->private_key = true;
|
||||
return k;
|
||||
#endif // OPENSSL VERSION
|
||||
#else
|
||||
return NULL;
|
||||
#endif // UNIX_LINUX
|
||||
|
Loading…
Reference in New Issue
Block a user