mirror of
https://github.com/openwrt/packages.git
synced 2025-02-12 00:00:55 +00:00
Fix a possible security issue with OpenSSL config autoloading on Windows (CVE-2021-3606). Include a number of small improvements and bug fixes. remove upstreamed: 115-fix-mbedtls-without-renegotiation.patch Signed-off-by: Ivan Pavlov <AuthorReflex@gmail.com>
11 lines
192 B
Bash
Executable File
11 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"openvpn-mbedtls")
|
|
openvpn --version | grep "$2.*SSL (mbed TLS)"
|
|
;;
|
|
"openvpn-openssl"|"openvpn-wolfssl")
|
|
openvpn --version | grep "$2.*SSL (OpenSSL)"
|
|
;;
|
|
esac
|