class documentation
class DigestedCredentials: (source)
Constructor: DigestedCredentials(username, method, realm, fields)
Implements interfaces: twisted.cred.credentials.IUsernameHashedPassword
, twisted.web.iweb.IUsernameDigestHash
Yet Another Simple HTTP Digest authentication scheme.
Method | __init__ |
Undocumented |
Method | check |
Verify that the credentials represented by this object agree with the credentials represented by the H(A1) given in digestHash. |
Method | check |
Verify that the credentials represented by this object agree with the given plaintext password by hashing password in the same way the response hash represented by this object was generated and comparing the results. |
Instance Variable | fields |
Undocumented |
Instance Variable | method |
Undocumented |
Instance Variable | realm |
Undocumented |
Instance Variable | username |
Undocumented |
Verify that the credentials represented by this object agree with the credentials represented by the H(A1) given in digestHash.
Parameters | |
digest | A precomputed H(A1) value based on the username, realm, and password associate with this credentials object. |