├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── ikectl ├── CVS │ ├── Entries │ ├── Repository │ └── Root ├── Makefile ├── ikeca.c ├── ikeca.cnf ├── ikectl.8 ├── ikectl.c ├── parser.c └── parser.h ├── iked ├── .cvsignore ├── CVS │ ├── Entries │ ├── Repository │ └── Root ├── Makefile ├── ca.c ├── chap_ms.c ├── chap_ms.h ├── config.c ├── control.c ├── crypto.c ├── dh.c ├── dh.h ├── eap.c ├── eap.h ├── genmap.sh ├── iked.8 ├── iked.c ├── iked.conf.5 ├── iked.h ├── ikev1.c ├── ikev2.c ├── ikev2.h ├── ikev2_msg.c ├── ikev2_pld.c ├── imsg_util.c ├── log.c ├── ocsp.c ├── parse.y ├── pfkey.c ├── policy.c ├── proc.c ├── smult_curve25519_ref.c ├── timer.c ├── types.h └── util.c └── regress ├── CVS ├── Entries ├── Repository └── Root ├── Makefile └── dh ├── CVS ├── Entries ├── Repository └── Root ├── Makefile └── dhtest.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/README.md -------------------------------------------------------------------------------- /ikectl/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/ikectl/CVS/Entries -------------------------------------------------------------------------------- /ikectl/CVS/Repository: -------------------------------------------------------------------------------- 1 | src/usr.sbin/ikectl 2 | -------------------------------------------------------------------------------- /ikectl/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/ikectl/CVS/Root -------------------------------------------------------------------------------- /ikectl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/ikectl/Makefile -------------------------------------------------------------------------------- /ikectl/ikeca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/ikectl/ikeca.c -------------------------------------------------------------------------------- /ikectl/ikeca.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/ikectl/ikeca.cnf -------------------------------------------------------------------------------- /ikectl/ikectl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/ikectl/ikectl.8 -------------------------------------------------------------------------------- /ikectl/ikectl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/ikectl/ikectl.c -------------------------------------------------------------------------------- /ikectl/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/ikectl/parser.c -------------------------------------------------------------------------------- /ikectl/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/ikectl/parser.h -------------------------------------------------------------------------------- /iked/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/.cvsignore -------------------------------------------------------------------------------- /iked/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/CVS/Entries -------------------------------------------------------------------------------- /iked/CVS/Repository: -------------------------------------------------------------------------------- 1 | src/sbin/iked 2 | -------------------------------------------------------------------------------- /iked/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/CVS/Root -------------------------------------------------------------------------------- /iked/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/Makefile -------------------------------------------------------------------------------- /iked/ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/ca.c -------------------------------------------------------------------------------- /iked/chap_ms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/chap_ms.c -------------------------------------------------------------------------------- /iked/chap_ms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/chap_ms.h -------------------------------------------------------------------------------- /iked/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/config.c -------------------------------------------------------------------------------- /iked/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/control.c -------------------------------------------------------------------------------- /iked/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/crypto.c -------------------------------------------------------------------------------- /iked/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/dh.c -------------------------------------------------------------------------------- /iked/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/dh.h -------------------------------------------------------------------------------- /iked/eap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/eap.c -------------------------------------------------------------------------------- /iked/eap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/eap.h -------------------------------------------------------------------------------- /iked/genmap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/genmap.sh -------------------------------------------------------------------------------- /iked/iked.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/iked.8 -------------------------------------------------------------------------------- /iked/iked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/iked.c -------------------------------------------------------------------------------- /iked/iked.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/iked.conf.5 -------------------------------------------------------------------------------- /iked/iked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/iked.h -------------------------------------------------------------------------------- /iked/ikev1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/ikev1.c -------------------------------------------------------------------------------- /iked/ikev2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/ikev2.c -------------------------------------------------------------------------------- /iked/ikev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/ikev2.h -------------------------------------------------------------------------------- /iked/ikev2_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/ikev2_msg.c -------------------------------------------------------------------------------- /iked/ikev2_pld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/ikev2_pld.c -------------------------------------------------------------------------------- /iked/imsg_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/imsg_util.c -------------------------------------------------------------------------------- /iked/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/log.c -------------------------------------------------------------------------------- /iked/ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/ocsp.c -------------------------------------------------------------------------------- /iked/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/parse.y -------------------------------------------------------------------------------- /iked/pfkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/pfkey.c -------------------------------------------------------------------------------- /iked/policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/policy.c -------------------------------------------------------------------------------- /iked/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/proc.c -------------------------------------------------------------------------------- /iked/smult_curve25519_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/smult_curve25519_ref.c -------------------------------------------------------------------------------- /iked/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/timer.c -------------------------------------------------------------------------------- /iked/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/types.h -------------------------------------------------------------------------------- /iked/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/iked/util.c -------------------------------------------------------------------------------- /regress/CVS/Entries: -------------------------------------------------------------------------------- 1 | /Makefile/1.1/Mon Aug 25 19:22:20 2014// 2 | D/dh//// 3 | -------------------------------------------------------------------------------- /regress/CVS/Repository: -------------------------------------------------------------------------------- 1 | src/regress/sbin/iked 2 | -------------------------------------------------------------------------------- /regress/CVS/Root: -------------------------------------------------------------------------------- 1 | anoncvs@ftp.hostserver.de:/cvs 2 | -------------------------------------------------------------------------------- /regress/Makefile: -------------------------------------------------------------------------------- 1 | # $OpenBSD: Makefile,v 1.1 2014/08/25 19:22:20 reyk Exp $ 2 | 3 | SUBDIR= dh 4 | 5 | .include 6 | -------------------------------------------------------------------------------- /regress/dh/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/regress/dh/CVS/Entries -------------------------------------------------------------------------------- /regress/dh/CVS/Repository: -------------------------------------------------------------------------------- 1 | src/regress/sbin/iked/dh 2 | -------------------------------------------------------------------------------- /regress/dh/CVS/Root: -------------------------------------------------------------------------------- 1 | anoncvs@ftp.hostserver.de:/cvs 2 | -------------------------------------------------------------------------------- /regress/dh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/regress/dh/Makefile -------------------------------------------------------------------------------- /regress/dh/dhtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reyk/openiked/HEAD/regress/dh/dhtest.c --------------------------------------------------------------------------------