├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── django_sha2 ├── __init__.py ├── auth.py ├── bcrypt_auth.py ├── hashers.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── strengthen_user_passwords.py └── models.py ├── requirements.txt ├── setup.py ├── test ├── django13 │ ├── __init__.py │ ├── settings.py │ └── tests │ │ ├── __init__.py │ │ ├── test_bcrypt.py │ │ └── test_sha2.py └── django14 │ ├── __init__.py │ ├── settings.py │ └── tests │ ├── __init__.py │ └── test_bcrypt.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/README.md -------------------------------------------------------------------------------- /django_sha2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/django_sha2/__init__.py -------------------------------------------------------------------------------- /django_sha2/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/django_sha2/auth.py -------------------------------------------------------------------------------- /django_sha2/bcrypt_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/django_sha2/bcrypt_auth.py -------------------------------------------------------------------------------- /django_sha2/hashers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/django_sha2/hashers.py -------------------------------------------------------------------------------- /django_sha2/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_sha2/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_sha2/management/commands/strengthen_user_passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/django_sha2/management/commands/strengthen_user_passwords.py -------------------------------------------------------------------------------- /django_sha2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/django_sha2/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | py-bcrypt==0.2 2 | 3 | ## Tests 4 | tox 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/setup.py -------------------------------------------------------------------------------- /test/django13/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/django13/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/test/django13/settings.py -------------------------------------------------------------------------------- /test/django13/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/django13/tests/test_bcrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/test/django13/tests/test_bcrypt.py -------------------------------------------------------------------------------- /test/django13/tests/test_sha2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/test/django13/tests/test_sha2.py -------------------------------------------------------------------------------- /test/django14/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/django14/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/test/django14/settings.py -------------------------------------------------------------------------------- /test/django14/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/django14/tests/test_bcrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/test/django14/tests/test_bcrypt.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwenzel/django-sha2/HEAD/tox.ini --------------------------------------------------------------------------------