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

  /external/chromium_org/third_party/WebKit/public/platform/
WebCryptoAlgorithmParams.h 47 class WebCryptoAlgorithmParams {
49 explicit WebCryptoAlgorithmParams(WebCryptoAlgorithmParamsType type)
54 virtual ~WebCryptoAlgorithmParams() { }
62 class WebCryptoAesCbcParams : public WebCryptoAlgorithmParams {
65 : WebCryptoAlgorithmParams(WebCryptoAlgorithmParamsTypeAesCbcParams)
76 class WebCryptoAesKeyGenParams : public WebCryptoAlgorithmParams {
79 : WebCryptoAlgorithmParams(WebCryptoAlgorithmParamsTypeAesKeyGenParams)
90 class WebCryptoHmacParams : public WebCryptoAlgorithmParams {
93 : WebCryptoAlgorithmParams(WebCryptoAlgorithmParamsTypeHmacParams)
104 class WebCryptoRsaSsaParams : public WebCryptoAlgorithmParams {
    [all...]
WebCryptoAlgorithm.h 72 class WebCryptoAlgorithmParams;
83 WebCryptoAlgorithm(WebCryptoAlgorithmId, const char* name, PassOwnPtr<WebCryptoAlgorithmParams>);
86 WEBKIT_EXPORT static WebCryptoAlgorithm adoptParamsAndCreate(WebCryptoAlgorithmId, const char* name, WebCryptoAlgorithmParams*);
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebCryptoAlgorithm.cpp 34 #include "public/platform/WebCryptoAlgorithmParams.h"
42 WebCryptoAlgorithmPrivate(WebCryptoAlgorithmId id, const char* name, PassOwnPtr<WebCryptoAlgorithmParams> params)
51 OwnPtr<WebCryptoAlgorithmParams> params;
54 WebCryptoAlgorithm::WebCryptoAlgorithm(WebCryptoAlgorithmId id, const char* name, PassOwnPtr<WebCryptoAlgorithmParams> params)
59 WebCryptoAlgorithm WebCryptoAlgorithm::adoptParamsAndCreate(WebCryptoAlgorithmId id, const char* name, WebCryptoAlgorithmParams* params)
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.cpp 38 #include "public/platform/WebCryptoAlgorithmParams.h"
163 PassOwnPtr<WebKit::WebCryptoAlgorithmParams> parseAesCbcParams(const Dictionary& raw)
175 PassOwnPtr<WebKit::WebCryptoAlgorithmParams> parseAesKeyGenParams(const Dictionary& raw)
195 PassOwnPtr<WebKit::WebCryptoAlgorithmParams> parseHmacParams(const Dictionary& raw)
203 PassOwnPtr<WebKit::WebCryptoAlgorithmParams> parseRsaSsaParams(const Dictionary& raw)
211 PassOwnPtr<WebKit::WebCryptoAlgorithmParams> parseRsaKeyGenParams(const Dictionary& raw)
226 PassOwnPtr<WebKit::WebCryptoAlgorithmParams> parseAlgorithmParams(const Dictionary& raw, WebKit::WebCryptoAlgorithmParamsType type)
285 OwnPtr<WebKit::WebCryptoAlgorithmParams> params = parseAlgorithmParams(raw, paramsType);

Completed in 1580 milliseconds