twisted.spread.pb._PortalAuthChallenger(Referenceable, _JellyableAvatarMixin)
class documentationtwisted.spread.pb
View Source
(View In Hierarchy)
Implements interfaces: twisted.cred.credentials.IUsernameHashedPassword, twisted.spread.pb.IUsernameMD5Password
Called with response to password challenge.
Method | __init__ | Undocumented |
Method | remote_respond | Undocumented |
Method | checkPassword | Validate these credentials against the correct password. |
Method | checkMD5Password | Validate these credentials against the correct MD5 digest of the password. |
Inherited from _JellyableAvatarMixin:
Method | _cbLogin | Ensure that the avatar to be returned to the client is jellyable and set up disconnection notification to call the realm's logout object. |
Inherited from _JellyableAvatarMixin:
Method | _cbLogin | Ensure that the avatar to be returned to the client is jellyable and set up disconnection notification to call the realm's logout object. |
Inherited from _JellyableAvatarMixin:
Method | _cbLogin | Ensure that the avatar to be returned to the client is jellyable and set up disconnection notification to call the realm's logout object. |
Inherited from _JellyableAvatarMixin:
Method | _cbLogin | Ensure that the avatar to be returned to the client is jellyable and set up disconnection notification to call the realm's logout object. |
Validate these credentials against the correct password.
Parameters | password | The correct, plaintext password against which to check. (type: bytes ) |
Returns | True if the credentials represented by this object match the
given password, False if they do not, or a Deferred which
will be called back with one of these values. (type: bool or Deferred ) |
Validate these credentials against the correct MD5 digest of the password.
Parameters | password | The correct MD5 digest of a password against which to check. (type: str ) |
Returns | True if the credentials represented by this object match the
given digest, False if they do not, or a Deferred which
will be called back with one of these values. (type: bool or Deferred ) |