HomeSort by relevance Sort by last modified time
    Searched refs:digestor (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
Crypto.cpp 41 OwnPtr<blink::WebCryptoDigestor> digestor = adoptPtr(crypto->createDigestor(algorithmId)); local
42 if (!digestor.get() || !digestor->consume(reinterpret_cast<const unsigned char*>(digestable), length) || !digestor->finish(result, resultSize))
54 void finishDigestor(blink::WebCryptoDigestor* digestor, DigestValue& digestResult)
59 if (!digestor->finish(result, resultSize))
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMPatchSupport.cpp 404 static void addStringToDigestor(blink::WebCryptoDigestor* digestor, const String& string)
406 digestor->consume(reinterpret_cast<const unsigned char*>(string.utf8().data()), string.length());
413 OwnPtr<blink::WebCryptoDigestor> digestor = createDigestor(HashAlgorithmSha1); local
417 digestor->consume(reinterpret_cast<const unsigned char*>(&nodeType), sizeof(nodeType));
418 addStringToDigestor(digestor.get(), node->nodeName());
419 addStringToDigestor(digestor.get(), node->nodeValue());
426 addStringToDigestor(digestor.get(), childInfo->m_sha1);
441 addStringToDigestor(digestor.get(), digest->m_attrsSHA1);
445 finishDigestor(digestor.get(), digestResult);
  /external/chromium_org/content/child/webcrypto/
platform_crypto_openssl.cc 260 DigestorOpenSSL digestor(algorithm);
261 Status error = digestor.ConsumeWithStatus(data.bytes(), data.byte_length());
264 return digestor.FinishWithVectorAndStatus(buffer);
platform_crypto_nss.cc     [all...]
shared_crypto_unittest.cc 832 scoped_ptr<blink::WebCryptoDigestor> digestor(
    [all...]

Completed in 1707 milliseconds