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

1 2

  /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 226 virtual WebCryptoDigestor* createDigestor(WebCryptoAlgorithmId algorithmId) { return 0; }
  /external/chromium_org/content/child/webcrypto/
algorithm_registry.h 25 Status GetAlgorithmImplementation(blink::WebCryptoAlgorithmId id,
webcrypto_util.h 33 blink::WebCryptoAlgorithmId id);
39 blink::WebCryptoAlgorithmId hash_id);
44 blink::WebCryptoAlgorithmId id,
45 blink::WebCryptoAlgorithmId hash_id);
54 bool IsAlgorithmRsa(blink::WebCryptoAlgorithmId alg_id);
55 bool IsAlgorithmAsymmetric(blink::WebCryptoAlgorithmId alg_id);
platform_crypto.h 24 blink::WebCryptoAlgorithmId algorithm);
algorithm_registry.cc 34 blink::WebCryptoAlgorithmId id) const {
76 Status GetAlgorithmImplementation(blink::WebCryptoAlgorithmId id,
webcrypto_util.cc 106 blink::WebCryptoAlgorithm CreateAlgorithm(blink::WebCryptoAlgorithmId id) {
111 blink::WebCryptoAlgorithmId hash_id) {
119 blink::WebCryptoAlgorithmId id,
120 blink::WebCryptoAlgorithmId hash_id) {
139 bool IsAlgorithmRsa(blink::WebCryptoAlgorithmId alg_id) {
144 bool IsAlgorithmAsymmetric(blink::WebCryptoAlgorithmId alg_id) {
algorithm_dispatch.h 98 blink::WebCryptoAlgorithmId algorithm);
jwk.h 123 const char* GetJwkHmacAlgorithmName(blink::WebCryptoAlgorithmId hash);
webcrypto_impl.h 91 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/content/child/webcrypto/openssl/
util_openssl.h 26 const EVP_MD* GetDigest(blink::WebCryptoAlgorithmId id);
sha_openssl.cc 31 explicit DigestorOpenSsl(blink::WebCryptoAlgorithmId algorithm_id)
108 blink::WebCryptoAlgorithmId algorithm_id_;
134 blink::WebCryptoAlgorithmId algorithm) {
rsa_key_openssl.h 39 const blink::WebCryptoAlgorithmId hash) const = 0;
util_openssl.cc 24 const EVP_MD* GetDigest(blink::WebCryptoAlgorithmId id) {
rsa_ssa_openssl.cc 41 const blink::WebCryptoAlgorithmId hash) const OVERRIDE {
rsa_key_openssl.cc 67 blink::WebCryptoAlgorithmId rsa_algorithm,
68 blink::WebCryptoAlgorithmId hash_algorithm,
95 const blink::WebCryptoAlgorithmId rsa_algorithm_id,
124 const blink::WebCryptoAlgorithmId rsa_algorithm_id,
rsa_oaep_openssl.cc 107 const blink::WebCryptoAlgorithmId hash) const OVERRIDE {
  /external/chromium_org/content/child/webcrypto/nss/
sha_nss.cc 24 blink::WebCryptoAlgorithmId algorithm) {
46 explicit DigestorNSS(blink::WebCryptoAlgorithmId algorithm_id)
128 blink::WebCryptoAlgorithmId algorithm_id_;
154 blink::WebCryptoAlgorithmId algorithm) {
rsa_key_nss.h 44 const blink::WebCryptoAlgorithmId hash) const = 0;
rsa_ssa_nss.cc 29 const blink::WebCryptoAlgorithmId hash) const OVERRIDE {
  /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/content/child/webcrypto/test/
test_helpers.h 58 blink::WebCryptoAlgorithmId algorithm_id,
59 const blink::WebCryptoAlgorithmId hash_id,
104 blink::WebCryptoAlgorithmId aes_alg_id,

Completed in 787 milliseconds

1 2