- Language: en
47 results for hash in version 3.2
-
Django 1.4 release notes
- … hash Consequences: The user will see the validation error “Security hash failed.” Time period: The amount …
-
Django 3.1 release notes
- … HASHING_ALGORITHM settings The new DEFAULT_HASHING_ALGORITHM transitional setting allows specifying the default hashing …
-
Model instance reference
- … hash__() Model. __hash__ () [source] The __hash__() method is based on the instance’s primary key value …
-
Django 2.1.2 release notes
- … hash. While it’s typically infeasible to reverse a strong password hash, if your site …
-
Settings
- … HASHING_ALGORITHM New in Django 3.1. Default: 'sha256' Default hashing algorithm to use for encoding …
-
Writing and running tests
- … hashing The default password hasher is rather slow by design. If you’re authenticating many …
-
Password management in Django
- … hash ( self , sha1_hash , salt , iterations = None ): return super () . encode ( sha1_hash , salt , iterations ) def encode …
-
The staticfiles app
- … hashes converge. To prevent an infinite loop due to hashes not converging (for example, if 'foo.css …
-
Using the Django authentication system
- … hash() method, authenticated sessions will include the hash returned by this function. In the AbstractBaseUser …
-
Customizing authentication in Django
- … hash of the password. For example: ADMIN_LOGIN = 'admin' ADMIN_PASSWORD = 'pbkdf2 …