/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
D | WebCryptoKeyAlgorithm.cpp | 57 WebCryptoKeyAlgorithm::WebCryptoKeyAlgorithm(WebCryptoAlgorithmId id, PassOwnPtr<WebCryptoKeyAlgori… in WebCryptoKeyAlgorithm() function in blink::WebCryptoKeyAlgorithm 62 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::adoptParamsAndCreate(WebCryptoAlgorithmId id, WebCrypt… in adoptParamsAndCreate() 64 return WebCryptoKeyAlgorithm(id, adoptPtr(params)); in adoptParamsAndCreate() 67 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createAes(WebCryptoAlgorithmId id, unsigned short keyL… in createAes() 72 return WebCryptoKeyAlgorithm(); in createAes() 73 return WebCryptoKeyAlgorithm(id, adoptPtr(new WebCryptoAesKeyAlgorithmParams(keyLengthBits))); in createAes() 76 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createHmac(WebCryptoAlgorithmId hash, unsigned keyLeng… in createHmac() 79 return WebCryptoKeyAlgorithm(); in createHmac() 80 …return WebCryptoKeyAlgorithm(WebCryptoAlgorithmIdHmac, adoptPtr(new WebCryptoHmacKeyAlgorithmParam… in createHmac() 83 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createRsaHashed(WebCryptoAlgorithmId id, unsigned modu… in createRsaHashed() [all …]
|
D | WebCryptoKey.cpp | 44 …KeyHandle> handle, WebCryptoKeyType type, bool extractable, const WebCryptoKeyAlgorithm& algorithm… in WebCryptoKeyPrivate() 57 const WebCryptoKeyAlgorithm algorithm; 61 …KeyHandle* handle, WebCryptoKeyType type, bool extractable, const WebCryptoKeyAlgorithm& algorithm… in create() 91 const WebCryptoKeyAlgorithm& WebCryptoKey::algorithm() const in algorithm()
|
/external/chromium_org/third_party/WebKit/public/platform/ |
D | WebCryptoKeyAlgorithm.h | 51 class WebCryptoKeyAlgorithm { 53 WebCryptoKeyAlgorithm() { } in WebCryptoKeyAlgorithm() function 56 …BLINK_PLATFORM_EXPORT WebCryptoKeyAlgorithm(WebCryptoAlgorithmId, PassOwnPtr<WebCryptoKeyAlgorithm… 60 …BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm adoptParamsAndCreate(WebCryptoAlgorithmId, WebC… 62 …BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createAes(WebCryptoAlgorithmId, unsigned short … 63 …BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createHmac(WebCryptoAlgorithmId hash, unsigned … 64 …BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createRsaHashed(WebCryptoAlgorithmId, unsigned … 66 ~WebCryptoKeyAlgorithm() { reset(); } in ~WebCryptoKeyAlgorithm() 68 WebCryptoKeyAlgorithm(const WebCryptoKeyAlgorithm& other) { assign(other); } in WebCryptoKeyAlgorithm() function 69 WebCryptoKeyAlgorithm& operator=(const WebCryptoKeyAlgorithm& other) [all …]
|
D | WebCryptoKey.h | 69 class WebCryptoKeyAlgorithm; variable 105 …te(WebCryptoKeyHandle*, WebCryptoKeyType, bool extractable, const WebCryptoKeyAlgorithm&, WebCrypt… 116 BLINK_PLATFORM_EXPORT const WebCryptoKeyAlgorithm& algorithm() const;
|
D | WebCrypto.h | 274 …virtual bool deserializeKeyForClone(const WebCryptoKeyAlgorithm&, WebCryptoKeyType, bool extractab… in deserializeKeyForClone() argument
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
D | KeyAlgorithm.h | 46 static KeyAlgorithm* create(const blink::WebCryptoKeyAlgorithm&); 59 explicit KeyAlgorithm(const blink::WebCryptoKeyAlgorithm&); 61 blink::WebCryptoKeyAlgorithm m_algorithm;
|
D | KeyAlgorithm.cpp | 48 KeyAlgorithm* KeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm) in create() 68 return new KeyAlgorithm(blink::WebCryptoKeyAlgorithm(hash.id(), nullptr)); in createHash() 71 KeyAlgorithm::KeyAlgorithm(const blink::WebCryptoKeyAlgorithm& algorithm) in KeyAlgorithm()
|
D | AesKeyAlgorithm.h | 44 static AesKeyAlgorithm* create(const blink::WebCryptoKeyAlgorithm&); 51 explicit AesKeyAlgorithm(const blink::WebCryptoKeyAlgorithm&);
|
D | RsaHashedKeyAlgorithm.h | 40 static RsaHashedKeyAlgorithm* create(const blink::WebCryptoKeyAlgorithm&); 47 explicit RsaHashedKeyAlgorithm(const blink::WebCryptoKeyAlgorithm&);
|
D | RsaKeyAlgorithm.h | 42 static RsaKeyAlgorithm* create(const blink::WebCryptoKeyAlgorithm&); 50 explicit RsaKeyAlgorithm(const blink::WebCryptoKeyAlgorithm&);
|
D | HmacKeyAlgorithm.h | 40 static HmacKeyAlgorithm* create(const blink::WebCryptoKeyAlgorithm&); 48 explicit HmacKeyAlgorithm(const blink::WebCryptoKeyAlgorithm&);
|
D | AesKeyAlgorithm.cpp | 39 AesKeyAlgorithm* AesKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm) in create() 54 AesKeyAlgorithm::AesKeyAlgorithm(const blink::WebCryptoKeyAlgorithm& algorithm) in AesKeyAlgorithm()
|
D | RsaHashedKeyAlgorithm.cpp | 39 RsaHashedKeyAlgorithm* RsaHashedKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm) in create() 57 RsaHashedKeyAlgorithm::RsaHashedKeyAlgorithm(const blink::WebCryptoKeyAlgorithm& algorithm) in RsaHashedKeyAlgorithm()
|
D | HmacKeyAlgorithm.cpp | 39 HmacKeyAlgorithm* HmacKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm) in create() 62 HmacKeyAlgorithm::HmacKeyAlgorithm(const blink::WebCryptoKeyAlgorithm& algorithm) in HmacKeyAlgorithm()
|
D | RsaKeyAlgorithm.cpp | 45 RsaKeyAlgorithm* RsaKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm) in create() 69 RsaKeyAlgorithm::RsaKeyAlgorithm(const blink::WebCryptoKeyAlgorithm& algorithm) in RsaKeyAlgorithm()
|
/external/chromium_org/content/child/webcrypto/ |
D | webcrypto_util.cc | 165 blink::WebCryptoKeyAlgorithm* key_algorithm) { in CreateSecretKeyAlgorithm() 174 blink::WebCryptoKeyAlgorithm::createHmac(hash.id(), keylen_bytes * 8); in CreateSecretKeyAlgorithm() 181 *key_algorithm = blink::WebCryptoKeyAlgorithm::createAes( in CreateSecretKeyAlgorithm()
|
D | platform_crypto_openssl.cc | 288 blink::WebCryptoKeyAlgorithm key_algorithm; in GenerateSecretKey() 320 blink::WebCryptoKeyAlgorithm key_algorithm; in ImportKeyRaw() 471 const blink::WebCryptoKeyAlgorithm& key_algorithm, in ExportKeyPkcs8() 506 const blink::WebCryptoKeyAlgorithm& algorithm, in ThreadSafeDeserializeKeyForClone()
|
D | platform_crypto_nss.cc | 251 const blink::WebCryptoKeyAlgorithm& algorithm, in Create() 596 blink::WebCryptoKeyAlgorithm* key_algorithm) { in CreatePublicKeyAlgorithm() 608 *key_algorithm = blink::WebCryptoKeyAlgorithm::createRsaHashed( in CreatePublicKeyAlgorithm() 622 blink::WebCryptoKeyAlgorithm* key_algorithm) { in CreatePrivateKeyAlgorithm() 968 blink::WebCryptoKeyAlgorithm key_algorithm; in ImportKeyRaw() 1061 blink::WebCryptoKeyAlgorithm key_algorithm; in ImportKeySpki() 1142 const blink::WebCryptoKeyAlgorithm& key_algorithm, in ExportKeyPkcs8() 1241 blink::WebCryptoKeyAlgorithm key_algorithm; in ImportKeyPkcs8() 1550 blink::WebCryptoKeyAlgorithm key_algorithm; in GenerateRsaKeyPair() 1622 blink::WebCryptoKeyAlgorithm key_algorithm; in GenerateSecretKey() [all …]
|
D | webcrypto_util.h | 72 blink::WebCryptoKeyAlgorithm* key_algorithm);
|
D | webcrypto_impl.h | 96 const blink::WebCryptoKeyAlgorithm& algorithm,
|
D | shared_crypto.h | 156 const blink::WebCryptoKeyAlgorithm& algorithm,
|
D | platform_crypto.h | 272 const blink::WebCryptoKeyAlgorithm& key_algorithm,
|
D | shared_crypto.cc | 254 const blink::WebCryptoKeyAlgorithm& algorithm) { in KeyAlgorithmToImportAlgorithm() 279 const blink::WebCryptoKeyAlgorithm& algorithm, in ValidateDeserializedKey() 892 bool DeserializeKeyForClone(const blink::WebCryptoKeyAlgorithm& algorithm, in DeserializeKeyForClone()
|
D | jwk.cc | 595 Status WriteAlg(const blink::WebCryptoKeyAlgorithm& algorithm, in WriteAlg()
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | SerializedScriptValue.cpp | 2240 blink::WebCryptoKeyAlgorithm algorithm; in readCryptoKey() 2387 bool doReadHmacKey(blink::WebCryptoKeyAlgorithm& algorithm, blink::WebCryptoKeyType& type) in doReadHmacKey() 2395 algorithm = blink::WebCryptoKeyAlgorithm::createHmac(hash, lengthBytes * 8); in doReadHmacKey() 2400 bool doReadAesKey(blink::WebCryptoKeyAlgorithm& algorithm, blink::WebCryptoKeyType& type) in doReadAesKey() 2408 algorithm = blink::WebCryptoKeyAlgorithm::createAes(id, lengthBytes * 8); in doReadAesKey() 2413 bool doReadRsaHashedKey(blink::WebCryptoKeyAlgorithm& algorithm, blink::WebCryptoKeyType& type) in doReadRsaHashedKey() 2451 …algorithm = blink::WebCryptoKeyAlgorithm::createRsaHashed(id, modulusLengthBits, publicExponent, p… in doReadRsaHashedKey()
|