crypto            507 Source/bindings/v8/SerializedScriptValue.cpp         if (!blink::Platform::current()->crypto()->serializeKeyForClone(key, keyData))
crypto           2174 Source/bindings/v8/SerializedScriptValue.cpp         if (!blink::Platform::current()->crypto()->deserializeKeyForClone(
crypto             54 Source/bindings/v8/custom/V8CryptoCustom.cpp         Crypto* crypto = V8Crypto::toNative(info.Holder());
crypto             55 Source/bindings/v8/custom/V8CryptoCustom.cpp         crypto->getRandomValues(arrayBufferView, exceptionState);
crypto            305 Source/core/frame/csp/ContentSecurityPolicy.cpp     blink::WebCrypto* crypto = blink::Platform::current()->crypto();
crypto            308 Source/core/frame/csp/ContentSecurityPolicy.cpp     ASSERT(crypto);
crypto            310 Source/core/frame/csp/ContentSecurityPolicy.cpp     crypto->digestSynchronous(algorithmId, reinterpret_cast<const unsigned char*>(source), length, result);
crypto             65 Source/modules/crypto/DOMWindowCrypto.cpp     return DOMWindowCrypto::from(window).crypto();
crypto             48 Source/modules/crypto/DOMWindowCrypto.h     static Crypto* crypto(DOMWindow&);
crypto             49 Source/modules/crypto/DOMWindowCrypto.h     Crypto* crypto() const;
crypto             91 Source/modules/crypto/SubtleCrypto.cpp         blink::Platform::current()->crypto()->encrypt(algorithm, key->key(), data, dataSize, result->result());
crypto             94 Source/modules/crypto/SubtleCrypto.cpp         blink::Platform::current()->crypto()->decrypt(algorithm, key->key(), data, dataSize, result->result());
crypto             97 Source/modules/crypto/SubtleCrypto.cpp         blink::Platform::current()->crypto()->sign(algorithm, key->key(), data, dataSize, result->result());
crypto            100 Source/modules/crypto/SubtleCrypto.cpp         blink::Platform::current()->crypto()->verifySignature(algorithm, key->key(), reinterpret_cast<const unsigned char*>(signature->baseAddress()), signature->byteLength(), data, dataSize, result->result());
crypto            103 Source/modules/crypto/SubtleCrypto.cpp         blink::Platform::current()->crypto()->digest(algorithm, data, dataSize, result->result());
crypto            158 Source/modules/crypto/SubtleCrypto.cpp     blink::Platform::current()->crypto()->generateKey(algorithm, extractable, keyUsages, result->result());
crypto            186 Source/modules/crypto/SubtleCrypto.cpp     blink::Platform::current()->crypto()->importKey(format, keyDataBytes, keyData->byteLength(), algorithm, extractable, keyUsages, result->result());
crypto            209 Source/modules/crypto/SubtleCrypto.cpp     blink::Platform::current()->crypto()->exportKey(format, key->key(), result->result());
crypto            244 Source/modules/crypto/SubtleCrypto.cpp     blink::Platform::current()->crypto()->wrapKey(format, key->key(), wrappingKey->key(), wrapAlgorithm, result->result());
crypto            285 Source/modules/crypto/SubtleCrypto.cpp     blink::Platform::current()->crypto()->unwrapKey(format, wrappedKeyData, wrappedKeyDataSize, unwrappingKey->key(), unwrapAlgorithm, unwrappedKeyAlgorithm, extractable, keyUsages, result->result());
crypto             60 Source/modules/crypto/WorkerGlobalScopeCrypto.cpp     return WorkerGlobalScopeCrypto::from(context).crypto();
crypto             48 Source/modules/crypto/WorkerGlobalScopeCrypto.h     static Crypto* crypto(WillBeHeapSupplementable<WorkerGlobalScope>&);
crypto             49 Source/modules/crypto/WorkerGlobalScopeCrypto.h     Crypto* crypto() const;
crypto            597 public/platform/Platform.h     virtual WebCrypto* crypto() { return 0; }