DIGEST-MD5 authentication mechanism for PyXMPP SASL implementation.
bytes
|
_unquote(data)
Unquote quoted value from DIGEST-MD5 challenge or response. |
|
|
bytes
|
_quote(data)
Prepare a string for quoting for DIGEST-MD5 challenge or response. |
|
|
bytes
|
_h_value(data)
H function of the DIGEST-MD5 algorithm (MD5 sum). |
|
|
bytes
|
_kd_value(k_val,
s_val)
KD function of the DIGEST-MD5 algorithm. |
|
|
bytes
|
_make_urp_hash(username,
realm,
passwd)
Compute MD5 sum of username:realm:password. |
|
|
bytes
|
_compute_response(urp_hash,
nonce,
cnonce,
nonce_count,
authzid,
digest_uri)
Compute DIGEST-MD5 response value. |
|
|
bytes
|
_compute_response_auth(urp_hash,
nonce,
cnonce,
nonce_count,
authzid,
digest_uri)
Compute DIGEST-MD5 rspauth value. |
|
|