├── .gitignore ├── README.rst ├── bcrypt ├── __init__.py ├── bcrypt.py ├── eksblowfish.py └── tests.py ├── benchmarks ├── README.rst ├── v1_12rounds.txt ├── v1_4rounds.txt ├── v2_12rounds.txt └── v2_4rounds.txt └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[co] 2 | *.sw[po] 3 | pip-log.txt 4 | .DS_Store 5 | .noseids 6 | tmp/* 7 | *~ 8 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/python-bcrypt/HEAD/README.rst -------------------------------------------------------------------------------- /bcrypt/__init__.py: -------------------------------------------------------------------------------- 1 | from bcrypt import * 2 | -------------------------------------------------------------------------------- /bcrypt/bcrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/python-bcrypt/HEAD/bcrypt/bcrypt.py -------------------------------------------------------------------------------- /bcrypt/eksblowfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/python-bcrypt/HEAD/bcrypt/eksblowfish.py -------------------------------------------------------------------------------- /bcrypt/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/python-bcrypt/HEAD/bcrypt/tests.py -------------------------------------------------------------------------------- /benchmarks/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/python-bcrypt/HEAD/benchmarks/README.rst -------------------------------------------------------------------------------- /benchmarks/v1_12rounds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/python-bcrypt/HEAD/benchmarks/v1_12rounds.txt -------------------------------------------------------------------------------- /benchmarks/v1_4rounds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/python-bcrypt/HEAD/benchmarks/v1_4rounds.txt -------------------------------------------------------------------------------- /benchmarks/v2_12rounds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/python-bcrypt/HEAD/benchmarks/v2_12rounds.txt -------------------------------------------------------------------------------- /benchmarks/v2_4rounds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/python-bcrypt/HEAD/benchmarks/v2_4rounds.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # Tests 2 | nose 3 | --------------------------------------------------------------------------------