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

  /external/chromium_org/third_party/WebKit/public/platform/
WebCryptoKeyAlgorithm.h 47 // WebCryptoKeyAlgorithm represents the algorithm used to generate a key.
51 class WebCryptoKeyAlgorithm {
53 WebCryptoKeyAlgorithm() { }
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);
66 ~WebCryptoKeyAlgorithm() { reset(); }
68 WebCryptoKeyAlgorithm(const WebCryptoKeyAlgorithm& other) { assign(other);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCryptoKeyAlgorithm.cpp 32 #include "public/platform/WebCryptoKeyAlgorithm.h"
57 WebCryptoKeyAlgorithm::WebCryptoKeyAlgorithm(WebCryptoAlgorithmId id, PassOwnPtr<WebCryptoKeyAlgorithmParams> params)
62 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::adoptParamsAndCreate(WebCryptoAlgorithmId id, WebCryptoKeyAlgorithmParams* params)
64 return WebCryptoKeyAlgorithm(id, adoptPtr(params));
67 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createAes(WebCryptoAlgorithmId id, unsigned short keyLengthBits)
72 return WebCryptoKeyAlgorithm();
73 return WebCryptoKeyAlgorithm(id, adoptPtr(new WebCryptoAesKeyAlgorithmParams(keyLengthBits)))
    [all...]

Completed in 123 milliseconds