Home
last modified time | relevance | path

Searched refs:nonce_count (Results 1 – 20 of 20) sorted by relevance

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/requests/
Dauth.py121 self._thread_local.nonce_count = 0
196 self._thread_local.nonce_count += 1
198 self._thread_local.nonce_count = 1
200 s = str(self._thread_local.nonce_count).encode("utf-8")
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/requests/
Dauth.py121 self._thread_local.nonce_count = 0
196 self._thread_local.nonce_count += 1
198 self._thread_local.nonce_count = 1
200 s = str(self._thread_local.nonce_count).encode("utf-8")
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/requests/
Dauth.py121 self._thread_local.nonce_count = 0
196 self._thread_local.nonce_count += 1
198 self._thread_local.nonce_count = 1
200 s = str(self._thread_local.nonce_count).encode("utf-8")
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/requests/
Dauth.py121 self._thread_local.nonce_count = 0
196 self._thread_local.nonce_count += 1
198 self._thread_local.nonce_count = 1
200 s = str(self._thread_local.nonce_count).encode("utf-8")
/aosp_15_r20/external/cronet/net/http/
H A Dhttp_auth_handler_digest.cc175 int nonce_count, in HttpAuthHandlerDigest() argument
177 : nonce_count_(nonce_count), nonce_generator_(nonce_generator) { in HttpAuthHandlerDigest()
431 int nonce_count) const { in AssembleCredentials()
433 std::string nc = base::StringPrintf("%08x", nonce_count); in AssembleCredentials()
H A Dhttp_auth_handler_digest.h144 HttpAuthHandlerDigest(int nonce_count, const NonceGenerator* nonce_generator);
178 int nonce_count) const;
H A Dhttp_auth_handler_digest_unittest.cc445 int nonce_count; in TEST() member
666 test.cnonce, test.nonce_count); in TEST()
H A Dhttp_auth_handler_mock.h60 int nonce_count,
H A Dhttp_auth_handler_mock.cc160 int nonce_count, in CreateAuthHandler() argument
H A Dhttp_auth_handler_factory_unittest.cc51 int nonce_count, in CreateAuthHandler() argument
/aosp_15_r20/external/python/cpython2/Lib/
Durllib2.py959 self.nonce_count = 0
1000 dig = hashlib.sha1("%s:%s:%s:%s" % (self.nonce_count, nonce, time.ctime(),
1036 self.nonce_count += 1
1038 self.nonce_count = 1
1041 ncvalue = '%08x' % self.nonce_count
/aosp_15_r20/external/libcups/cups/
H A Dhttp-support.c1341 http->nonce_count = 1; in _httpSetDigestAuthString()
1344 http->nonce_count ++; in _httpSetDigestAuthString()
1412 …snprintf(temp, sizeof(temp), "%s:%s:%08x:%s:%s:%s", ha1, http->nonce, http->nonce_count, cnonce, "… in _httpSetDigestAuthString()
1421 … http->realm, http->nonce, http->algorithm, http->opaque, cnonce, http->nonce_count, resource, kd); in _httpSetDigestAuthString()
1423 …\"", username, http->realm, http->nonce, http->algorithm, cnonce, http->nonce_count, resource, kd); in _httpSetDigestAuthString()
H A Dhttp-private.h236 unsigned nonce_count; /* Nonce count */ member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/urllib/
Drequest.py1097 self.nonce_count = 0
1141 s = "%s:%s:%s:" % (self.nonce_count, nonce, time.ctime())
1182 self.nonce_count += 1
1184 self.nonce_count = 1
1186 ncvalue = '%08x' % self.nonce_count
/aosp_15_r20/external/python/cpython3/Lib/urllib/
Drequest.py1097 self.nonce_count = 0
1141 s = "%s:%s:%s:" % (self.nonce_count, nonce, time.ctime())
1182 self.nonce_count += 1
1184 self.nonce_count = 1
1186 ncvalue = '%08x' % self.nonce_count
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/urllib/
Drequest.py1097 self.nonce_count = 0
1141 s = "%s:%s:%s:" % (self.nonce_count, nonce, time.ctime())
1182 self.nonce_count += 1
1184 self.nonce_count = 1
1186 ncvalue = '%08x' % self.nonce_count
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/urllib/
Drequest.py1097 self.nonce_count = 0
1141 s = "%s:%s:%s:" % (self.nonce_count, nonce, time.ctime())
1182 self.nonce_count += 1
1184 self.nonce_count = 1
1186 ncvalue = '%08x' % self.nonce_count
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/urllib/
H A Drequest.py1097 self.nonce_count = 0
1141 s = "%s:%s:%s:" % (self.nonce_count, nonce, time.ctime())
1182 self.nonce_count += 1
1184 self.nonce_count = 1
1186 ncvalue = '%08x' % self.nonce_count
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/urllib/
Drequest.py1097 self.nonce_count = 0
1141 s = "%s:%s:%s:" % (self.nonce_count, nonce, time.ctime())
1182 self.nonce_count += 1
1184 self.nonce_count = 1
1186 ncvalue = '%08x' % self.nonce_count
/aosp_15_r20/external/cronet/net/url_request/
H A Durl_request_context_builder_unittest.cc82 int nonce_count, in CreateAuthHandler() argument