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

  /external/chromium_org/third_party/WebKit/public/platform/
WebCryptoKeyAlgorithm.h 56 BLINK_PLATFORM_EXPORT WebCryptoKeyAlgorithm(WebCryptoAlgorithmId, PassOwnPtr<WebCryptoKeyAlgorithmParams>);
60 BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm adoptParamsAndCreate(WebCryptoAlgorithmId, WebCryptoKeyAlgorithmParams*);
62 BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createAes(WebCryptoAlgorithmId, unsigned short keyLengthBits);
63 BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createHmac(WebCryptoAlgorithmId hash, unsigned keyLengthBits);
64 BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createRsaHashed(WebCryptoAlgorithmId, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, WebCryptoAlgorithmId hash);
77 BLINK_PLATFORM_EXPORT WebCryptoAlgorithmId id() const;
WebCryptoAlgorithm.h 58 enum WebCryptoAlgorithmId {
126 BLINK_PLATFORM_EXPORT WebCryptoAlgorithm(WebCryptoAlgorithmId, PassOwnPtr<WebCryptoAlgorithmParams>);
130 BLINK_PLATFORM_EXPORT static WebCryptoAlgorithm adoptParamsAndCreate(WebCryptoAlgorithmId, WebCryptoAlgorithmParams*);
135 BLINK_PLATFORM_EXPORT static const WebCryptoAlgorithmInfo* lookupAlgorithmInfo(WebCryptoAlgorithmId);
148 BLINK_PLATFORM_EXPORT WebCryptoAlgorithmId id() const;
165 BLINK_PLATFORM_EXPORT static bool isHash(WebCryptoAlgorithmId);
WebCrypto.h 230 virtual WebCryptoDigestor* createDigestor(WebCryptoAlgorithmId algorithmId) { return 0; }
  /external/chromium_org/content/child/webcrypto/
webcrypto_util.h 56 blink::WebCryptoAlgorithmId id);
62 blink::WebCryptoAlgorithmId hash_id);
67 blink::WebCryptoAlgorithmId id,
68 blink::WebCryptoAlgorithmId hash_id);
78 bool IsAlgorithmRsa(blink::WebCryptoAlgorithmId alg_id);
79 bool IsAlgorithmAsymmetric(blink::WebCryptoAlgorithmId alg_id);
webcrypto_util.cc 141 blink::WebCryptoAlgorithm CreateAlgorithm(blink::WebCryptoAlgorithmId id) {
146 blink::WebCryptoAlgorithmId hash_id) {
154 blink::WebCryptoAlgorithmId id,
155 blink::WebCryptoAlgorithmId hash_id) {
194 bool IsAlgorithmRsa(blink::WebCryptoAlgorithmId alg_id) {
199 bool IsAlgorithmAsymmetric(blink::WebCryptoAlgorithmId alg_id) {
shared_crypto.h 95 blink::WebCryptoAlgorithmId algorithm);
179 Status CheckKeyUsages(blink::WebCryptoAlgorithmId algorithm,
platform_crypto_openssl.cc 68 const EVP_MD* GetDigest(blink::WebCryptoAlgorithmId id) {
160 explicit DigestorOpenSSL(blink::WebCryptoAlgorithmId algorithm_id)
237 blink::WebCryptoAlgorithmId algorithm_id_;
257 Status DigestSha(blink::WebCryptoAlgorithmId algorithm,
268 blink::WebCryptoAlgorithmId algorithm_id) {
webcrypto_impl.h 93 blink::WebCryptoAlgorithmId algorithm_id);
platform_crypto.h 129 Status DigestSha(blink::WebCryptoAlgorithmId algorithm,
136 blink::WebCryptoAlgorithmId algorithm);
shared_crypto.cc 416 unsigned int ShaBlockSizeBytes(blink::WebCryptoAlgorithmId hash_id) {
434 blink::WebCryptoAlgorithmId algorithm,
480 Status BestEffortCheckKeyUsagesForImport(blink::WebCryptoAlgorithmId algorithm,
534 blink::WebCryptoAlgorithmId algorithm,
615 blink::WebCryptoAlgorithmId algorithm) {
    [all...]
jwk.cc 215 blink::WebCryptoAlgorithmId hash_id) {
223 blink::WebCryptoAlgorithmId hash_id) {
359 // Binds a WebCryptoAlgorithmId value to a compatible factory function.
361 blink::WebCryptoAlgorithmId);
363 blink::WebCryptoAlgorithmId algorithm_id>
    [all...]
platform_crypto_nss.cc 302 Status NssSupportsKeyImport(blink::WebCryptoAlgorithmId algorithm) {
334 Status NssSupportsKeyImport(blink::WebCryptoAlgorithmId) {
350 blink::WebCryptoAlgorithmId algorithm) {
853 explicit DigestorNSS(blink::WebCryptoAlgorithmId algorithm_id)
    [all...]
shared_crypto_unittest.cc 148 blink::WebCryptoAlgorithmId algorithm_id,
149 const blink::WebCryptoAlgorithmId hash_id,
201 blink::WebCryptoAlgorithmId hash_id,
323 blink::WebCryptoAlgorithmId id;
380 blink::WebCryptoAlgorithmId aes_alg_id,
    [all...]
webcrypto_impl.cc 746 blink::WebCryptoAlgorithmId algorithm_id) {
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCryptoKeyAlgorithm.cpp 40 WebCryptoAlgorithm createHash(WebCryptoAlgorithmId hash)
47 WebCryptoKeyAlgorithmPrivate(WebCryptoAlgorithmId id, PassOwnPtr<WebCryptoKeyAlgorithmParams> params)
53 WebCryptoAlgorithmId id;
57 WebCryptoKeyAlgorithm::WebCryptoKeyAlgorithm(WebCryptoAlgorithmId id, PassOwnPtr<WebCryptoKeyAlgorithmParams> params)
62 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::adoptParamsAndCreate(WebCryptoAlgorithmId id, WebCryptoKeyAlgorithmParams* params)
67 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createAes(WebCryptoAlgorithmId id, unsigned short keyLengthBits)
76 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createHmac(WebCryptoAlgorithmId hash, unsigned keyLengthBits)
83 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createRsaHashed(WebCryptoAlgorithmId id, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, WebCryptoAlgorithmId hash)
96 WebCryptoAlgorithmId WebCryptoKeyAlgorithm::id() cons
    [all...]
WebCryptoAlgorithm.cpp 224 WebCryptoAlgorithmPrivate(WebCryptoAlgorithmId id, PassOwnPtr<WebCryptoAlgorithmParams> params)
230 WebCryptoAlgorithmId id;
234 WebCryptoAlgorithm::WebCryptoAlgorithm(WebCryptoAlgorithmId id, PassOwnPtr<WebCryptoAlgorithmParams> params)
244 WebCryptoAlgorithm WebCryptoAlgorithm::adoptParamsAndCreate(WebCryptoAlgorithmId id, WebCryptoAlgorithmParams* params)
249 const WebCryptoAlgorithmInfo* WebCryptoAlgorithm::lookupAlgorithmInfo(WebCryptoAlgorithmId id)
261 WebCryptoAlgorithmId WebCryptoAlgorithm::id() const
347 bool WebCryptoAlgorithm::isHash(WebCryptoAlgorithmId id)
  /external/chromium_org/third_party/WebKit/Source/platform/
Crypto.cpp 15 static blink::WebCryptoAlgorithmId toWebCryptoAlgorithmId(HashAlgorithm algorithm)
34 blink::WebCryptoAlgorithmId algorithmId = toWebCryptoAlgorithmId(algorithm);
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.cpp 55 blink::WebCryptoAlgorithmId algorithmId;
164 bool lookupAlgorithmIdByName(const String& algorithmName, blink::WebCryptoAlgorithmId& id)
693 blink::WebCryptoAlgorithmId algorithmId;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
SerializedScriptValue.cpp 755 void doWriteAlgorithmId(blink::WebCryptoAlgorithmId id)
    [all...]

Completed in 74 milliseconds