1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-10 01:34:58 +03:00

Interop_OpenVPN: remove lists of supported encryption and hash algorithms

They are not required as OvsGetCipher() checks if the cipher is available and fallbacks to the default one in case it's not.
This commit is contained in:
Davide Beatrici
2018-08-02 16:18:41 +02:00
parent 3240bed85b
commit 0d096961b7
2 changed files with 2 additions and 8 deletions

View File

@ -953,7 +953,7 @@ CIPHER *OvsGetCipher(char *name)
{
CIPHER *c = NULL;
if (IsEmptyStr(name) == false && IsStrInStrTokenList(OPENVPN_CIPHER_LIST, name, NULL, false))
if (IsEmptyStr(name) == false)
{
c = NewCipher(name);
}
@ -971,7 +971,7 @@ MD *OvsGetMd(char *name)
{
MD *m = NULL;
if (IsEmptyStr(name) == false && IsStrInStrTokenList(OPENVPN_MD_LIST, name, NULL, false))
if (IsEmptyStr(name) == false)
{
m = NewMd(name);
}