├── .github └── workflows │ └── action.yml ├── .gitignore ├── COPYING.md ├── ChangeLog ├── KNOWN_ISSUES ├── Licensing └── gpl-2.0.txt ├── README.md ├── README.quickstart.md ├── distro ├── README └── windows │ ├── EasyRSA-Start.bat │ ├── Licensing │ ├── LICENSE-OpenSSL.txt │ └── mksh-Win32.txt │ ├── README-Windows.txt │ ├── bin │ ├── awk.exe │ ├── cat.exe │ ├── cp.exe │ ├── date.exe │ ├── diff.exe │ ├── easyrsa-shell-init.sh │ ├── grep.exe │ ├── ls.exe │ ├── md5sum.exe │ ├── mkdir.exe │ ├── mv.exe │ ├── printf.exe │ ├── rm.exe │ ├── sed.exe │ ├── sh.exe │ └── which.exe │ ├── build │ └── build_openssl.sh │ ├── win32 │ ├── libcrypto-3.dll │ ├── libssl-3.dll │ └── openssl.exe │ └── win64 │ ├── libcrypto-3-x64.dll │ ├── libssl-3-x64.dll │ └── openssl.exe ├── doc ├── EasyRSA-Advanced.md ├── EasyRSA-Contributing.md ├── EasyRSA-Readme.md ├── EasyRSA-Renew-and-Revoke.md ├── EasyRSA-Upgrade-Notes.md ├── Hacking.md ├── Intro-To-PKI.md └── TODO ├── easyrsa3 ├── easyrsa ├── openssl-easyrsa.cnf ├── vars.example └── x509-types │ ├── COMMON │ ├── ca │ ├── client │ ├── code-signing │ ├── email │ ├── kdc │ ├── server │ └── serverClient ├── op-test.sh ├── release-keys └── README.md ├── wop-test.bat └── wop-test.sh /.github/workflows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/.github/workflows/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/COPYING.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/ChangeLog -------------------------------------------------------------------------------- /KNOWN_ISSUES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/KNOWN_ISSUES -------------------------------------------------------------------------------- /Licensing/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/Licensing/gpl-2.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/README.md -------------------------------------------------------------------------------- /README.quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/README.quickstart.md -------------------------------------------------------------------------------- /distro/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/README -------------------------------------------------------------------------------- /distro/windows/EasyRSA-Start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/EasyRSA-Start.bat -------------------------------------------------------------------------------- /distro/windows/Licensing/LICENSE-OpenSSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/Licensing/LICENSE-OpenSSL.txt -------------------------------------------------------------------------------- /distro/windows/Licensing/mksh-Win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/Licensing/mksh-Win32.txt -------------------------------------------------------------------------------- /distro/windows/README-Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/README-Windows.txt -------------------------------------------------------------------------------- /distro/windows/bin/awk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/awk.exe -------------------------------------------------------------------------------- /distro/windows/bin/cat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/cat.exe -------------------------------------------------------------------------------- /distro/windows/bin/cp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/cp.exe -------------------------------------------------------------------------------- /distro/windows/bin/date.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/date.exe -------------------------------------------------------------------------------- /distro/windows/bin/diff.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/diff.exe -------------------------------------------------------------------------------- /distro/windows/bin/easyrsa-shell-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/easyrsa-shell-init.sh -------------------------------------------------------------------------------- /distro/windows/bin/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/grep.exe -------------------------------------------------------------------------------- /distro/windows/bin/ls.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/ls.exe -------------------------------------------------------------------------------- /distro/windows/bin/md5sum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/md5sum.exe -------------------------------------------------------------------------------- /distro/windows/bin/mkdir.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/mkdir.exe -------------------------------------------------------------------------------- /distro/windows/bin/mv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/mv.exe -------------------------------------------------------------------------------- /distro/windows/bin/printf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/printf.exe -------------------------------------------------------------------------------- /distro/windows/bin/rm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/rm.exe -------------------------------------------------------------------------------- /distro/windows/bin/sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/sed.exe -------------------------------------------------------------------------------- /distro/windows/bin/sh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/sh.exe -------------------------------------------------------------------------------- /distro/windows/bin/which.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/bin/which.exe -------------------------------------------------------------------------------- /distro/windows/build/build_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/build/build_openssl.sh -------------------------------------------------------------------------------- /distro/windows/win32/libcrypto-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/win32/libcrypto-3.dll -------------------------------------------------------------------------------- /distro/windows/win32/libssl-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/win32/libssl-3.dll -------------------------------------------------------------------------------- /distro/windows/win32/openssl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/win32/openssl.exe -------------------------------------------------------------------------------- /distro/windows/win64/libcrypto-3-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/win64/libcrypto-3-x64.dll -------------------------------------------------------------------------------- /distro/windows/win64/libssl-3-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/win64/libssl-3-x64.dll -------------------------------------------------------------------------------- /distro/windows/win64/openssl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/distro/windows/win64/openssl.exe -------------------------------------------------------------------------------- /doc/EasyRSA-Advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/doc/EasyRSA-Advanced.md -------------------------------------------------------------------------------- /doc/EasyRSA-Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/doc/EasyRSA-Contributing.md -------------------------------------------------------------------------------- /doc/EasyRSA-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/doc/EasyRSA-Readme.md -------------------------------------------------------------------------------- /doc/EasyRSA-Renew-and-Revoke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/doc/EasyRSA-Renew-and-Revoke.md -------------------------------------------------------------------------------- /doc/EasyRSA-Upgrade-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/doc/EasyRSA-Upgrade-Notes.md -------------------------------------------------------------------------------- /doc/Hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/doc/Hacking.md -------------------------------------------------------------------------------- /doc/Intro-To-PKI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/doc/Intro-To-PKI.md -------------------------------------------------------------------------------- /doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/doc/TODO -------------------------------------------------------------------------------- /easyrsa3/easyrsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/easyrsa3/easyrsa -------------------------------------------------------------------------------- /easyrsa3/openssl-easyrsa.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/easyrsa3/openssl-easyrsa.cnf -------------------------------------------------------------------------------- /easyrsa3/vars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/easyrsa3/vars.example -------------------------------------------------------------------------------- /easyrsa3/x509-types/COMMON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/easyrsa3/x509-types/COMMON -------------------------------------------------------------------------------- /easyrsa3/x509-types/ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/easyrsa3/x509-types/ca -------------------------------------------------------------------------------- /easyrsa3/x509-types/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/easyrsa3/x509-types/client -------------------------------------------------------------------------------- /easyrsa3/x509-types/code-signing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/easyrsa3/x509-types/code-signing -------------------------------------------------------------------------------- /easyrsa3/x509-types/email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/easyrsa3/x509-types/email -------------------------------------------------------------------------------- /easyrsa3/x509-types/kdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/easyrsa3/x509-types/kdc -------------------------------------------------------------------------------- /easyrsa3/x509-types/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/easyrsa3/x509-types/server -------------------------------------------------------------------------------- /easyrsa3/x509-types/serverClient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/easyrsa3/x509-types/serverClient -------------------------------------------------------------------------------- /op-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/op-test.sh -------------------------------------------------------------------------------- /release-keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/release-keys/README.md -------------------------------------------------------------------------------- /wop-test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/wop-test.bat -------------------------------------------------------------------------------- /wop-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa/HEAD/wop-test.sh --------------------------------------------------------------------------------