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 52 class WebCryptoAlgorithmParams {
54 explicit WebCryptoAlgorithmParams(WebCryptoAlgorithmParamsType type)
59 virtual ~WebCryptoAlgorithmParams() { }
67 class WebCryptoAesCbcParams : public WebCryptoAlgorithmParams {
70 : WebCryptoAlgorithmParams(WebCryptoAlgorithmParamsTypeAesCbcParams)
81 class WebCryptoAesCtrParams : public WebCryptoAlgorithmParams {
84 : WebCryptoAlgorithmParams(WebCryptoAlgorithmParamsTypeAesCtrParams)
98 class WebCryptoAesKeyGenParams : public WebCryptoAlgorithmParams {
101 : WebCryptoAlgorithmParams(WebCryptoAlgorithmParamsTypeAesKeyGenParams)
115 class WebCryptoHmacParams : public WebCryptoAlgorithmParams {
    [all...]
WebCryptoAlgorithm.h 85 class WebCryptoAlgorithmParams;
99 BLINK_PLATFORM_EXPORT WebCryptoAlgorithm(WebCryptoAlgorithmId, PassOwnPtr<WebCryptoAlgorithmParams>);
103 BLINK_PLATFORM_EXPORT static WebCryptoAlgorithm adoptParamsAndCreate(WebCryptoAlgorithmId, WebCryptoAlgorithmParams*);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCryptoAlgorithm.cpp 34 #include "public/platform/WebCryptoAlgorithmParams.h"
42 WebCryptoAlgorithmPrivate(WebCryptoAlgorithmId id, PassOwnPtr<WebCryptoAlgorithmParams> params)
49 OwnPtr<WebCryptoAlgorithmParams> params;
52 WebCryptoAlgorithm::WebCryptoAlgorithm(WebCryptoAlgorithmId id, PassOwnPtr<WebCryptoAlgorithmParams> params)
62 WebCryptoAlgorithm WebCryptoAlgorithm::adoptParamsAndCreate(WebCryptoAlgorithmId id, WebCryptoAlgorithmParams* params)
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.cpp 38 #include "public/platform/WebCryptoAlgorithmParams.h"
361 bool parseAesCbcParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ExceptionContext& context, ExceptionState& exceptionState)
376 bool parseAesKeyGenParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ExceptionContext& context, ExceptionState& exceptionState)
400 bool parseHmacParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ExceptionContext& context, ExceptionState& exceptionState)
410 bool parseHmacKeyParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ExceptionContext& context, ExceptionState& exceptionState)
425 bool parseRsaSsaParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ExceptionContext& context, ExceptionState& exceptionState)
435 bool parseRsaKeyGenParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ExceptionContext& context, ExceptionState& exceptionState)
449 bool parseAesCtrParams(const Dictionary& raw, OwnPtr<blink::WebCryptoAlgorithmParams>& params, const ExceptionContext& context, ExceptionState& es)
463 bool parseAlgorithmParams(const Dictionary& raw, blink::WebCryptoAlgorithmParamsType type, OwnPtr<blink::WebCryptoAlgorithmParams>& params, ExceptionContext& context, ExceptionState& exceptionState)
539 OwnPtr<blink::WebCryptoAlgorithmParams> params
    [all...]

Completed in 84 milliseconds