Module models
source code
|
|
SiteProfileNotAvailable
|
|
|
Permission
The permissions system provides a way to assign permissions to
specific users and groups of users.
|
|
|
Group
Groups are a generic way of categorizing users to apply permissions,
or some other label, to those users.
|
|
|
UserManager
|
|
|
User
Users within the Django authentication system are represented by this
model.
|
|
|
Message
The message system is a lightweight way to queue messages for given
users.
|
|
|
AnonymousUser
|
|
|
get_hexdigest(algorithm,
salt,
raw_password)
Returns a string of the hexdigest of the given plaintext password and
salt using the given algorithm ('md5', 'sha1' or 'crypt'). |
source code
|
|
|
|
|
Imports:
auth,
validators,
ImproperlyConfigured,
models,
EmptyManager,
ContentType,
smart_str,
_,
datetime,
urllib,
set
|
Returns a boolean of whether the raw_password was correct. Handles
encryption formats behind the scenes.
|