- Language: en
8 results for hash in version 1.8
-
Password management in Django
- … hash ( self , sha1_hash , salt , iterations = None ): return super ( PBKDF2WrappedSHA1PasswordHasher , self ) . encode ( sha1_hash , salt …
-
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 …
-
Cryptographic signing
- … hash, you can use the optional salt argument to the Signer class. Using a salt …
-
Testing tools
- … hashed password. Alternatively, you can use the create_user() helper method to create a new user …
-
Writing and running tests
- … hashing algorithm: PASSWORD_HASHERS = ( 'django.contrib.auth.hashers.MD5PasswordHasher' , ) Don’t forget to also include in PASSWORD …
-
User authentication in Django
- … hashing system Forms and view tools for logging in users, or restricting content A pluggable …
-
Django’s cache framework
- … hash digest of the key parts), you can provide a custom key function. The KEY_FUNCTION …