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/Source/platform/exported/
WebCryptoAlgorithm.cpp 32 #include "public/platform/WebCryptoAlgorithm.h"
234 WebCryptoAlgorithm::WebCryptoAlgorithm(WebCryptoAlgorithmId id, PassOwnPtr<WebCryptoAlgorithmParams> params)
239 WebCryptoAlgorithm WebCryptoAlgorithm::createNull()
241 return WebCryptoAlgorithm();
244 WebCryptoAlgorithm WebCryptoAlgorithm::adoptParamsAndCreate(WebCryptoAlgorithmId id, WebCryptoAlgorithmParams* params)
246 return WebCryptoAlgorithm(id, adoptPtr(params));
249 const WebCryptoAlgorithmInfo* WebCryptoAlgorithm::lookupAlgorithmInfo(WebCryptoAlgorithmId id
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebCryptoAlgorithm.h 115 // The WebCryptoAlgorithm represents a normalized algorithm and its parameters.
120 // If WebCryptoAlgorithm "isNull()" then it is invalid to call any of the other
122 class WebCryptoAlgorithm {
125 WebCryptoAlgorithm() { }
126 BLINK_PLATFORM_EXPORT WebCryptoAlgorithm(WebCryptoAlgorithmId, PassOwnPtr<WebCryptoAlgorithmParams>);
129 BLINK_PLATFORM_EXPORT static WebCryptoAlgorithm createNull();
130 BLINK_PLATFORM_EXPORT static WebCryptoAlgorithm adoptParamsAndCreate(WebCryptoAlgorithmId, WebCryptoAlgorithmParams*);
137 ~WebCryptoAlgorithm() { reset(); }
139 WebCryptoAlgorithm(const WebCryptoAlgorithm& other) { assign(other);
    [all...]

Completed in 107 milliseconds