├── .boring ├── ChangeLog ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── README ├── TODO ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── examples ├── rules └── source │ └── format ├── examples ├── README ├── certs │ ├── ca.pem │ ├── crl.pem │ ├── expired.crt │ ├── expired.key │ ├── revoked.crt │ ├── revoked.key │ ├── valid.crt │ └── valid.key ├── client.py ├── crypto.py ├── server.py ├── twisted-client.py └── twisted-server.py ├── gnutls ├── __info__.py ├── __init__.py ├── connection.py ├── constants.py ├── crypto.py ├── errors.py ├── interfaces │ ├── __init__.py │ └── twisted │ │ └── __init__.py ├── library │ ├── __init__.py │ ├── constants.py │ ├── errors.py │ ├── functions.py │ └── types.py └── validators.py ├── setup.py └── test ├── Makefile ├── gnutls-client.c ├── gnutls-server ├── openssl-server ├── tc-gnutls.py ├── tc-openssl.py ├── ts-gnutls.py └── ts-openssl.py /.boring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/.boring -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /debian/examples: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/README -------------------------------------------------------------------------------- /examples/certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/certs/ca.pem -------------------------------------------------------------------------------- /examples/certs/crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/certs/crl.pem -------------------------------------------------------------------------------- /examples/certs/expired.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/certs/expired.crt -------------------------------------------------------------------------------- /examples/certs/expired.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/certs/expired.key -------------------------------------------------------------------------------- /examples/certs/revoked.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/certs/revoked.crt -------------------------------------------------------------------------------- /examples/certs/revoked.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/certs/revoked.key -------------------------------------------------------------------------------- /examples/certs/valid.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/certs/valid.crt -------------------------------------------------------------------------------- /examples/certs/valid.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/certs/valid.key -------------------------------------------------------------------------------- /examples/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/client.py -------------------------------------------------------------------------------- /examples/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/crypto.py -------------------------------------------------------------------------------- /examples/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/server.py -------------------------------------------------------------------------------- /examples/twisted-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/twisted-client.py -------------------------------------------------------------------------------- /examples/twisted-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/examples/twisted-server.py -------------------------------------------------------------------------------- /gnutls/__info__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/__info__.py -------------------------------------------------------------------------------- /gnutls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/__init__.py -------------------------------------------------------------------------------- /gnutls/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/connection.py -------------------------------------------------------------------------------- /gnutls/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/constants.py -------------------------------------------------------------------------------- /gnutls/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/crypto.py -------------------------------------------------------------------------------- /gnutls/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/errors.py -------------------------------------------------------------------------------- /gnutls/interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gnutls/interfaces/twisted/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/interfaces/twisted/__init__.py -------------------------------------------------------------------------------- /gnutls/library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/library/__init__.py -------------------------------------------------------------------------------- /gnutls/library/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/library/constants.py -------------------------------------------------------------------------------- /gnutls/library/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/library/errors.py -------------------------------------------------------------------------------- /gnutls/library/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/library/functions.py -------------------------------------------------------------------------------- /gnutls/library/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/library/types.py -------------------------------------------------------------------------------- /gnutls/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/gnutls/validators.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/setup.py -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/gnutls-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/test/gnutls-client.c -------------------------------------------------------------------------------- /test/gnutls-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/test/gnutls-server -------------------------------------------------------------------------------- /test/openssl-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/test/openssl-server -------------------------------------------------------------------------------- /test/tc-gnutls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/test/tc-gnutls.py -------------------------------------------------------------------------------- /test/tc-openssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/test/tc-openssl.py -------------------------------------------------------------------------------- /test/ts-gnutls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/test/ts-gnutls.py -------------------------------------------------------------------------------- /test/ts-openssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGProjects/python-gnutls/HEAD/test/ts-openssl.py --------------------------------------------------------------------------------