├── .gitignore ├── .project ├── .pydevproject ├── .travis.sh ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── MANIFEST.in ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── bin └── ftp-gss ├── config └── edu.mit.Kerberos ├── pysrc └── kerberos.py ├── requirements-test.txt ├── setup.py ├── src ├── base64.c ├── base64.h ├── kerberos.c ├── kerberosbasic.c ├── kerberosbasic.h ├── kerberosgss.c ├── kerberosgss.h ├── kerberospw.c └── kerberospw.h ├── support ├── PyKerberos.xcodeproj │ ├── cyrusdaboo.mode1v3 │ ├── cyrusdaboo.pbxuser │ └── project.pbxproj ├── main.c └── update_copyrights ├── testing_notes.md └── tests ├── __init__.py └── test_kerberos.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/.pydevproject -------------------------------------------------------------------------------- /.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/.travis.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/README.md -------------------------------------------------------------------------------- /bin/ftp-gss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/bin/ftp-gss -------------------------------------------------------------------------------- /config/edu.mit.Kerberos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/config/edu.mit.Kerberos -------------------------------------------------------------------------------- /pysrc/kerberos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/pysrc/kerberos.py -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | requests 3 | psutil 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/setup.py -------------------------------------------------------------------------------- /src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/src/base64.c -------------------------------------------------------------------------------- /src/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/src/base64.h -------------------------------------------------------------------------------- /src/kerberos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/src/kerberos.c -------------------------------------------------------------------------------- /src/kerberosbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/src/kerberosbasic.c -------------------------------------------------------------------------------- /src/kerberosbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/src/kerberosbasic.h -------------------------------------------------------------------------------- /src/kerberosgss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/src/kerberosgss.c -------------------------------------------------------------------------------- /src/kerberosgss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/src/kerberosgss.h -------------------------------------------------------------------------------- /src/kerberospw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/src/kerberospw.c -------------------------------------------------------------------------------- /src/kerberospw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/src/kerberospw.h -------------------------------------------------------------------------------- /support/PyKerberos.xcodeproj/cyrusdaboo.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/support/PyKerberos.xcodeproj/cyrusdaboo.mode1v3 -------------------------------------------------------------------------------- /support/PyKerberos.xcodeproj/cyrusdaboo.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/support/PyKerberos.xcodeproj/cyrusdaboo.pbxuser -------------------------------------------------------------------------------- /support/PyKerberos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/support/PyKerberos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /support/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/support/main.c -------------------------------------------------------------------------------- /support/update_copyrights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/support/update_copyrights -------------------------------------------------------------------------------- /testing_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/testing_notes.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_kerberos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/ccs-pykerberos/HEAD/tests/test_kerberos.py --------------------------------------------------------------------------------