├── .gitignore ├── .travis.yml ├── COPYING.md ├── ChangeLog ├── KNOWN_ISSUES ├── Licensing ├── gpl-2.0.txt └── mktemp.txt ├── README.md ├── README.quickstart.md ├── distro ├── README └── windows │ ├── EasyRSA-Start.bat │ ├── Licensing │ ├── LICENSE-OpenSSL.txt │ └── mksh-Win32.txt │ ├── README-OpenSSL.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 │ ├── mktemp.exe │ ├── mv.exe │ ├── printf.exe │ ├── rm.exe │ ├── sed.exe │ ├── sh.exe │ └── which.exe │ ├── win32 │ ├── LICENSE │ ├── libcrypto-1_1.dll │ ├── libssl-1_1.dll │ ├── openssl.exe │ └── readme.txt │ └── win64 │ ├── LICENSE │ ├── libcrypto-1_1-x64.dll │ ├── libssl-1_1-x64.dll │ ├── openssl.exe │ └── readme.txt ├── doc ├── EasyRSA-Advanced.md ├── EasyRSA-Readme.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 │ ├── server │ └── serverClient ├── op_test.sh ├── release-keys └── README.md ├── wop_test.bat └── wop_test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/COPYING.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/ChangeLog -------------------------------------------------------------------------------- /KNOWN_ISSUES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/KNOWN_ISSUES -------------------------------------------------------------------------------- /Licensing/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/Licensing/gpl-2.0.txt -------------------------------------------------------------------------------- /Licensing/mktemp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/Licensing/mktemp.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/README.md -------------------------------------------------------------------------------- /README.quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/README.quickstart.md -------------------------------------------------------------------------------- /distro/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/README -------------------------------------------------------------------------------- /distro/windows/EasyRSA-Start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/EasyRSA-Start.bat -------------------------------------------------------------------------------- /distro/windows/Licensing/LICENSE-OpenSSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/Licensing/LICENSE-OpenSSL.txt -------------------------------------------------------------------------------- /distro/windows/Licensing/mksh-Win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/Licensing/mksh-Win32.txt -------------------------------------------------------------------------------- /distro/windows/README-OpenSSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/README-OpenSSL.txt -------------------------------------------------------------------------------- /distro/windows/README-Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/README-Windows.txt -------------------------------------------------------------------------------- /distro/windows/bin/awk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/awk.exe -------------------------------------------------------------------------------- /distro/windows/bin/cat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/cat.exe -------------------------------------------------------------------------------- /distro/windows/bin/cp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/cp.exe -------------------------------------------------------------------------------- /distro/windows/bin/date.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/date.exe -------------------------------------------------------------------------------- /distro/windows/bin/diff.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/diff.exe -------------------------------------------------------------------------------- /distro/windows/bin/easyrsa-shell-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/easyrsa-shell-init.sh -------------------------------------------------------------------------------- /distro/windows/bin/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/grep.exe -------------------------------------------------------------------------------- /distro/windows/bin/ls.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/ls.exe -------------------------------------------------------------------------------- /distro/windows/bin/md5sum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/md5sum.exe -------------------------------------------------------------------------------- /distro/windows/bin/mkdir.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/mkdir.exe -------------------------------------------------------------------------------- /distro/windows/bin/mktemp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/mktemp.exe -------------------------------------------------------------------------------- /distro/windows/bin/mv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/mv.exe -------------------------------------------------------------------------------- /distro/windows/bin/printf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/printf.exe -------------------------------------------------------------------------------- /distro/windows/bin/rm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/rm.exe -------------------------------------------------------------------------------- /distro/windows/bin/sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/sed.exe -------------------------------------------------------------------------------- /distro/windows/bin/sh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/sh.exe -------------------------------------------------------------------------------- /distro/windows/bin/which.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/bin/which.exe -------------------------------------------------------------------------------- /distro/windows/win32/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/win32/LICENSE -------------------------------------------------------------------------------- /distro/windows/win32/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/win32/libcrypto-1_1.dll -------------------------------------------------------------------------------- /distro/windows/win32/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/win32/libssl-1_1.dll -------------------------------------------------------------------------------- /distro/windows/win32/openssl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/win32/openssl.exe -------------------------------------------------------------------------------- /distro/windows/win32/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/win32/readme.txt -------------------------------------------------------------------------------- /distro/windows/win64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/win64/LICENSE -------------------------------------------------------------------------------- /distro/windows/win64/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/win64/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /distro/windows/win64/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/win64/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /distro/windows/win64/openssl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/win64/openssl.exe -------------------------------------------------------------------------------- /distro/windows/win64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/distro/windows/win64/readme.txt -------------------------------------------------------------------------------- /doc/EasyRSA-Advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/doc/EasyRSA-Advanced.md -------------------------------------------------------------------------------- /doc/EasyRSA-Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/doc/EasyRSA-Readme.md -------------------------------------------------------------------------------- /doc/EasyRSA-Upgrade-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/doc/EasyRSA-Upgrade-Notes.md -------------------------------------------------------------------------------- /doc/Hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/doc/Hacking.md -------------------------------------------------------------------------------- /doc/Intro-To-PKI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/doc/Intro-To-PKI.md -------------------------------------------------------------------------------- /doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/doc/TODO -------------------------------------------------------------------------------- /easyrsa3/easyrsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/easyrsa3/easyrsa -------------------------------------------------------------------------------- /easyrsa3/openssl-easyrsa.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/easyrsa3/openssl-easyrsa.cnf -------------------------------------------------------------------------------- /easyrsa3/vars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/easyrsa3/vars.example -------------------------------------------------------------------------------- /easyrsa3/x509-types/COMMON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/easyrsa3/x509-types/COMMON -------------------------------------------------------------------------------- /easyrsa3/x509-types/ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/easyrsa3/x509-types/ca -------------------------------------------------------------------------------- /easyrsa3/x509-types/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/easyrsa3/x509-types/client -------------------------------------------------------------------------------- /easyrsa3/x509-types/code-signing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/easyrsa3/x509-types/code-signing -------------------------------------------------------------------------------- /easyrsa3/x509-types/email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/easyrsa3/x509-types/email -------------------------------------------------------------------------------- /easyrsa3/x509-types/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/easyrsa3/x509-types/server -------------------------------------------------------------------------------- /easyrsa3/x509-types/serverClient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/easyrsa3/x509-types/serverClient -------------------------------------------------------------------------------- /op_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/op_test.sh -------------------------------------------------------------------------------- /release-keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/release-keys/README.md -------------------------------------------------------------------------------- /wop_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/wop_test.bat -------------------------------------------------------------------------------- /wop_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdikSS/easy-rsa-ipsec/HEAD/wop_test.sh --------------------------------------------------------------------------------