Page 1 of 1

is it possible to adding OpenVPN cipher within custom cipher algorithm from OpenSSL that modified within custom cipher a

Posted: Tue Jun 08, 2021 5:46 am
by antokxvi
I have implementation a custom cipher algorithm (GIFT128) and adding that to OpenSSL. and the result, cipher algorithm have been implemented like this when i check by command

Code: Select all

openssl enc -cipher
Image

then when i check it by command

Code: Select all

openssl ciphers -v GIFT
the result is like this

Image

after i implementing the algorithm to OpenSSL, i installed OpenVPN with that custom OpenSSL. and the result when i check the list OpenVPN cipher with command

Code: Select all

openvpn --cipher
the algorithm that i have implemented is not shown. but when i check the TLS cipher, the TLS cipher with custom algorithm that i used is shown, with command

Code: Select all

openvpn –-show-tls
and the result is like this :

Image

anybody know is it a problem or not when the custom algorithm not shown in the OpenVPN cipher list? What should i do to get the custom algorithm appear/show in the OpenVPN cipher list?