digest            303 Source/core/frame/csp/ContentSecurityPolicy.cpp void computeDigest(const char* source, size_t length, blink::WebCryptoAlgorithmId algorithmId, DigestValue& digest)
digest            314 Source/core/frame/csp/ContentSecurityPolicy.cpp     digest.append(reinterpret_cast<uint8_t*>(result.data()), result.byteLength());
digest            342 Source/core/frame/csp/ContentSecurityPolicy.cpp         DigestValue digest;
digest            344 Source/core/frame/csp/ContentSecurityPolicy.cpp             computeDigest(normalizedSource.data(), normalizedSource.length(), kAlgorithmMap[i].webCryptoAlgorithmId, digest);
digest            345 Source/core/frame/csp/ContentSecurityPolicy.cpp             if (isAllowedByAllWithHash<allowed>(policies, CSPHashValue(kAlgorithmMap[i].cspHashAlgorithm, digest)))
digest            413 Source/core/inspector/DOMPatchSupport.cpp     Digest* digest = new Digest(node);
digest            428 Source/core/inspector/DOMPatchSupport.cpp             digest->m_children.append(childInfo.release());
digest            442 Source/core/inspector/DOMPatchSupport.cpp             digest->m_attrsSHA1 = base64Encode(reinterpret_cast<const char*>(attrsHash.data()), 10);
digest            443 Source/core/inspector/DOMPatchSupport.cpp             addStringToSHA1(sha1, digest->m_attrsSHA1);
digest            449 Source/core/inspector/DOMPatchSupport.cpp     digest->m_sha1 = base64Encode(reinterpret_cast<const char*>(hash.data()), 10);
digest            451 Source/core/inspector/DOMPatchSupport.cpp         unusedNodesMap->add(digest->m_sha1, digest);
digest            452 Source/core/inspector/DOMPatchSupport.cpp     return adoptPtr(digest);
digest            455 Source/core/inspector/DOMPatchSupport.cpp bool DOMPatchSupport::insertBeforeAndMarkAsUsed(ContainerNode* parentNode, Digest* digest, Node* anchor, ExceptionState& exceptionState)
digest            457 Source/core/inspector/DOMPatchSupport.cpp     bool result = m_domEditor->insertBefore(parentNode, digest->m_node, anchor, exceptionState);
digest            458 Source/core/inspector/DOMPatchSupport.cpp     markNodeAsUsed(digest);
digest            491 Source/core/inspector/DOMPatchSupport.cpp void DOMPatchSupport::markNodeAsUsed(Digest* digest)
digest            494 Source/core/inspector/DOMPatchSupport.cpp     queue.append(digest);
digest            103 Source/modules/crypto/SubtleCrypto.cpp         blink::Platform::current()->crypto()->digest(algorithm, data, dataSize, result->result());
digest             59 Source/modules/crypto/SubtleCrypto.h     ScriptPromise digest(const Dictionary&, ArrayBufferView* data, ExceptionState&);
digest             88 Source/wtf/SHA1.cpp void SHA1::computeHash(Vector<uint8_t, 20>& digest)
digest             92 Source/wtf/SHA1.cpp     digest.clear();
digest             93 Source/wtf/SHA1.cpp     digest.resize(20);
digest             98 Source/wtf/SHA1.cpp             digest[4 * i + (3 - j)] = hashValue & 0xFF;
digest             49 Source/wtf/SHA1Test.cpp         Vector<uint8_t, 20> digest;
digest             50 Source/wtf/SHA1Test.cpp         sha1.computeHash(digest);
digest             54 Source/wtf/SHA1Test.cpp             snprintf(buffer, 3, "%02X", digest.at(i));
digest            193 public/platform/WebCrypto.h     virtual void digest(const WebCryptoAlgorithm&, const unsigned char* data, unsigned dataSize, WebCryptoResult result) { result.completeWithError(); }