├── .gitignore ├── .mailmap ├── .svncommitters ├── COPYING ├── COPYRIGHT.GPL ├── Makefile.am ├── configure.ac ├── distro ├── Makefile.am └── rpm │ ├── Makefile.am │ └── easy-rsa.spec.in ├── doc ├── Makefile.am ├── README-1.0 └── README-2.0 └── easy-rsa ├── 1.0 ├── build-ca ├── build-dh ├── build-inter ├── build-key ├── build-key-pass ├── build-key-pkcs12 ├── build-key-server ├── build-req ├── build-req-pass ├── clean-all ├── list-crl ├── make-crl ├── openssl.cnf ├── revoke-crt ├── revoke-full ├── sign-req └── vars ├── 2.0 ├── build-ca ├── build-dh ├── build-inter ├── build-key ├── build-key-pass ├── build-key-pkcs12 ├── build-key-server ├── build-req ├── build-req-pass ├── clean-all ├── inherit-inter ├── list-crl ├── openssl-0.9.6.cnf ├── openssl-0.9.8.cnf ├── openssl-1.0.0.cnf ├── pkitool ├── revoke-full ├── sign-req ├── vars └── whichopensslcnf └── Windows ├── README.txt ├── build-ca-pass.bat ├── build-ca.bat ├── build-dh.bat ├── build-key-pass.bat ├── build-key-pkcs12.bat ├── build-key-server-pass.bat ├── build-key-server.bat ├── build-key.bat ├── clean-all.bat ├── index.txt.start ├── init-config.bat ├── revoke-full.bat ├── serial.start └── vars.bat.sample /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/.mailmap -------------------------------------------------------------------------------- /.svncommitters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/.svncommitters -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/COPYING -------------------------------------------------------------------------------- /COPYRIGHT.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/COPYRIGHT.GPL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/Makefile.am -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/configure.ac -------------------------------------------------------------------------------- /distro/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/distro/Makefile.am -------------------------------------------------------------------------------- /distro/rpm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/distro/rpm/Makefile.am -------------------------------------------------------------------------------- /distro/rpm/easy-rsa.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/distro/rpm/easy-rsa.spec.in -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/README-1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/doc/README-1.0 -------------------------------------------------------------------------------- /doc/README-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/doc/README-2.0 -------------------------------------------------------------------------------- /easy-rsa/1.0/build-ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/build-ca -------------------------------------------------------------------------------- /easy-rsa/1.0/build-dh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/build-dh -------------------------------------------------------------------------------- /easy-rsa/1.0/build-inter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/build-inter -------------------------------------------------------------------------------- /easy-rsa/1.0/build-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/build-key -------------------------------------------------------------------------------- /easy-rsa/1.0/build-key-pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/build-key-pass -------------------------------------------------------------------------------- /easy-rsa/1.0/build-key-pkcs12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/build-key-pkcs12 -------------------------------------------------------------------------------- /easy-rsa/1.0/build-key-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/build-key-server -------------------------------------------------------------------------------- /easy-rsa/1.0/build-req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/build-req -------------------------------------------------------------------------------- /easy-rsa/1.0/build-req-pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/build-req-pass -------------------------------------------------------------------------------- /easy-rsa/1.0/clean-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/clean-all -------------------------------------------------------------------------------- /easy-rsa/1.0/list-crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/list-crl -------------------------------------------------------------------------------- /easy-rsa/1.0/make-crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/make-crl -------------------------------------------------------------------------------- /easy-rsa/1.0/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/openssl.cnf -------------------------------------------------------------------------------- /easy-rsa/1.0/revoke-crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/revoke-crt -------------------------------------------------------------------------------- /easy-rsa/1.0/revoke-full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/revoke-full -------------------------------------------------------------------------------- /easy-rsa/1.0/sign-req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/sign-req -------------------------------------------------------------------------------- /easy-rsa/1.0/vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/1.0/vars -------------------------------------------------------------------------------- /easy-rsa/2.0/build-ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/build-ca -------------------------------------------------------------------------------- /easy-rsa/2.0/build-dh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/build-dh -------------------------------------------------------------------------------- /easy-rsa/2.0/build-inter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/build-inter -------------------------------------------------------------------------------- /easy-rsa/2.0/build-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/build-key -------------------------------------------------------------------------------- /easy-rsa/2.0/build-key-pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/build-key-pass -------------------------------------------------------------------------------- /easy-rsa/2.0/build-key-pkcs12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/build-key-pkcs12 -------------------------------------------------------------------------------- /easy-rsa/2.0/build-key-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/build-key-server -------------------------------------------------------------------------------- /easy-rsa/2.0/build-req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/build-req -------------------------------------------------------------------------------- /easy-rsa/2.0/build-req-pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/build-req-pass -------------------------------------------------------------------------------- /easy-rsa/2.0/clean-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/clean-all -------------------------------------------------------------------------------- /easy-rsa/2.0/inherit-inter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/inherit-inter -------------------------------------------------------------------------------- /easy-rsa/2.0/list-crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/list-crl -------------------------------------------------------------------------------- /easy-rsa/2.0/openssl-0.9.6.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/openssl-0.9.6.cnf -------------------------------------------------------------------------------- /easy-rsa/2.0/openssl-0.9.8.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/openssl-0.9.8.cnf -------------------------------------------------------------------------------- /easy-rsa/2.0/openssl-1.0.0.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/openssl-1.0.0.cnf -------------------------------------------------------------------------------- /easy-rsa/2.0/pkitool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/pkitool -------------------------------------------------------------------------------- /easy-rsa/2.0/revoke-full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/revoke-full -------------------------------------------------------------------------------- /easy-rsa/2.0/sign-req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/sign-req -------------------------------------------------------------------------------- /easy-rsa/2.0/vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/vars -------------------------------------------------------------------------------- /easy-rsa/2.0/whichopensslcnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/2.0/whichopensslcnf -------------------------------------------------------------------------------- /easy-rsa/Windows/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/README.txt -------------------------------------------------------------------------------- /easy-rsa/Windows/build-ca-pass.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/build-ca-pass.bat -------------------------------------------------------------------------------- /easy-rsa/Windows/build-ca.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/build-ca.bat -------------------------------------------------------------------------------- /easy-rsa/Windows/build-dh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/build-dh.bat -------------------------------------------------------------------------------- /easy-rsa/Windows/build-key-pass.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/build-key-pass.bat -------------------------------------------------------------------------------- /easy-rsa/Windows/build-key-pkcs12.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/build-key-pkcs12.bat -------------------------------------------------------------------------------- /easy-rsa/Windows/build-key-server-pass.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/build-key-server-pass.bat -------------------------------------------------------------------------------- /easy-rsa/Windows/build-key-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/build-key-server.bat -------------------------------------------------------------------------------- /easy-rsa/Windows/build-key.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/build-key.bat -------------------------------------------------------------------------------- /easy-rsa/Windows/clean-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/clean-all.bat -------------------------------------------------------------------------------- /easy-rsa/Windows/index.txt.start: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easy-rsa/Windows/init-config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/init-config.bat -------------------------------------------------------------------------------- /easy-rsa/Windows/revoke-full.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/revoke-full.bat -------------------------------------------------------------------------------- /easy-rsa/Windows/serial.start: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /easy-rsa/Windows/vars.bat.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVPN/easy-rsa-old/HEAD/easy-rsa/Windows/vars.bat.sample --------------------------------------------------------------------------------