HomeSort by relevance Sort by last modified time
    Searched defs:WebCryptoAlgorithm (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/public/platform/
WebCryptoAlgorithm.h 88 // The WebCryptoAlgorithm represents a normalized algorithm and its parameters.
93 // If WebCryptoAlgorithm "isNull()" then it is invalid to call any of the other
95 class WebCryptoAlgorithm {
98 WebCryptoAlgorithm() { }
99 BLINK_PLATFORM_EXPORT WebCryptoAlgorithm(WebCryptoAlgorithmId, PassOwnPtr<WebCryptoAlgorithmParams>);
102 BLINK_PLATFORM_EXPORT static WebCryptoAlgorithm createNull();
103 BLINK_PLATFORM_EXPORT static WebCryptoAlgorithm adoptParamsAndCreate(WebCryptoAlgorithmId, WebCryptoAlgorithmParams*);
105 ~WebCryptoAlgorithm() { reset(); }
107 WebCryptoAlgorithm(const WebCryptoAlgorithm& other) { assign(other);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCryptoAlgorithm.cpp 32 #include "public/platform/WebCryptoAlgorithm.h"
52 WebCryptoAlgorithm::WebCryptoAlgorithm(WebCryptoAlgorithmId id, PassOwnPtr<WebCryptoAlgorithmParams> params)
57 WebCryptoAlgorithm WebCryptoAlgorithm::createNull()
59 return WebCryptoAlgorithm();
62 WebCryptoAlgorithm WebCryptoAlgorithm::adoptParamsAndCreate(WebCryptoAlgorithmId id, WebCryptoAlgorithmParams* params)
64 return WebCryptoAlgorithm(id, adoptPtr(params));
67 bool WebCryptoAlgorithm::isNull() cons
    [all...]

Completed in 82 milliseconds