HomeSort by relevance Sort by last modified time
    Searched defs:createDigestor (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
Crypto.cpp 41 OwnPtr<blink::WebCryptoDigestor> digestor = adoptPtr(crypto->createDigestor(algorithmId));
49 PassOwnPtr<blink::WebCryptoDigestor> createDigestor(HashAlgorithm algorithm)
51 return adoptPtr(blink::Platform::current()->crypto()->createDigestor(toWebCryptoAlgorithmId(algorithm)));
  /external/chromium_org/third_party/WebKit/public/platform/
WebCrypto.h 221 // of the WebCrypto standard. createDigestor must provide the result via
222 // the WebCryptoDigestor object synchronously. createDigestor may return 0
224 // WebCryptoDigestor returned by createDigestor must be freed by the
226 virtual WebCryptoDigestor* createDigestor(WebCryptoAlgorithmId algorithmId) { return 0; }
  /external/chromium_org/content/child/webcrypto/
webcrypto_impl.cc 740 blink::WebCryptoDigestor* WebCryptoImpl::createDigestor(
742 return webcrypto::CreateDigestor(algorithm_id).release();

Completed in 1468 milliseconds