├── Dockerfile ├── LICENSE ├── README.md ├── alice.yaml ├── bob.yaml ├── configuration.py ├── crypto.py ├── docker-compose.yml ├── example.yaml ├── ikesa.py ├── ikesacontroller.py ├── message.py ├── netlink.py ├── pyikev2.py ├── requirements.txt ├── test_configuration.py ├── test_crypto.py ├── test_ikesa.py ├── test_ikesacontroller.py ├── test_message.py ├── test_xfrm.py └── xfrm.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/README.md -------------------------------------------------------------------------------- /alice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/alice.yaml -------------------------------------------------------------------------------- /bob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/bob.yaml -------------------------------------------------------------------------------- /configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/configuration.py -------------------------------------------------------------------------------- /crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/crypto.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/example.yaml -------------------------------------------------------------------------------- /ikesa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/ikesa.py -------------------------------------------------------------------------------- /ikesacontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/ikesacontroller.py -------------------------------------------------------------------------------- /message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/message.py -------------------------------------------------------------------------------- /netlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/netlink.py -------------------------------------------------------------------------------- /pyikev2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/pyikev2.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cryptography 2 | netifaces 3 | pyyaml 4 | -------------------------------------------------------------------------------- /test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/test_configuration.py -------------------------------------------------------------------------------- /test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/test_crypto.py -------------------------------------------------------------------------------- /test_ikesa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/test_ikesa.py -------------------------------------------------------------------------------- /test_ikesacontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/test_ikesacontroller.py -------------------------------------------------------------------------------- /test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/test_message.py -------------------------------------------------------------------------------- /test_xfrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/test_xfrm.py -------------------------------------------------------------------------------- /xfrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alejandro-perez/pyikev2/HEAD/xfrm.py --------------------------------------------------------------------------------