aboutsummaryrefslogtreecommitdiff
path: root/net/openvpn/test.sh
diff options
context:
space:
mode:
authorIvan Pavlov <AuthorReflex@gmail.com>2021-05-05 18:12:35 +0300
committerIvan Pavlov <AuthorReflex@gmail.com>2021-06-13 13:07:15 +0300
commit1813c82ff3c3d1715ce1d2c1e26b6adbb2ba54c8 (patch)
tree11d4426f18d2eb19dd3028a57392bd27ef781851 /net/openvpn/test.sh
parent7436d944fa44e27816401868a11a4c9115eb717d (diff)
openvpn: enable using wolfSSL cryptographic API engine
Support for wolfSSL has been upstreamed to the master OpenVPN branch in f6dca235ae560597a0763f0c98fcc9130b80ccf4 so we can use wolfSSL directly in OpenVPN. So no more needed differnt SSL engine for OpenVPN in systems based on wolfSSL library Compiled && tested on ramips/mt7620, ramips/mt7621 Signed-off-by: Ivan Pavlov <AuthorReflex@gmail.com>
Diffstat (limited to 'net/openvpn/test.sh')
-rwxr-xr-xnet/openvpn/test.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/openvpn/test.sh b/net/openvpn/test.sh
index b51ccd6a1..c2b0cc4b0 100755
--- a/net/openvpn/test.sh
+++ b/net/openvpn/test.sh
@@ -7,4 +7,7 @@ case "$1" in
"openvpn-openssl")
openvpn --version | grep "$2.*SSL (OpenSSL)"
;;
+ "openvpn-wolfssl")
+ openvpn --version | grep "$2.*SSL (OpenSSL)"
+ ;;
esac