Home | History | Annotate | Download | only in python2.7

Lines Matching full:nonce

984     def get_cnonce(self, nonce):
990 dig = hashlib.sha1("%s:%s:%s:%s" % (self.nonce_count, nonce, time.ctime(),
997 nonce = chal['nonce']
1025 if nonce == self.last_nonce:
1029 self.last_nonce = nonce
1032 cnonce = self.get_cnonce(nonce)
1033 noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, qop, H(A2))
1036 respdig = KD(H(A1), "%s:%s" % (nonce, H(A2)))
1043 base = 'username="%s", realm="%s", nonce="%s", uri="%s", ' \
1044 'response="%s"' % (user, realm, nonce, req.get_selector(),