| Index: public/platform/WebCryptoKeyAlgorithm.h
|
| diff --git a/public/platform/WebCryptoKeyAlgorithm.h b/public/platform/WebCryptoKeyAlgorithm.h
|
| index 38e2393c29efb5f6223145b201415649f731bcfe..dd1b6897782dfc275ad412c8fafe524c44e212b1 100644
|
| --- a/public/platform/WebCryptoKeyAlgorithm.h
|
| +++ b/public/platform/WebCryptoKeyAlgorithm.h
|
| @@ -61,7 +61,6 @@ public:
|
|
|
| BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createAes(WebCryptoAlgorithmId, unsigned short keyLengthBits);
|
| BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createHmac(WebCryptoAlgorithmId hash, unsigned keyLengthBits);
|
| - BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createRsa(WebCryptoAlgorithmId, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize);
|
| BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createRsaHashed(WebCryptoAlgorithmId, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, WebCryptoAlgorithmId hash);
|
|
|
| ~WebCryptoKeyAlgorithm() { reset(); }
|
| @@ -84,7 +83,6 @@ public:
|
| // any AES parameters) then returns 0.
|
| BLINK_PLATFORM_EXPORT WebCryptoAesKeyAlgorithmParams* aesParams() const;
|
| BLINK_PLATFORM_EXPORT WebCryptoHmacKeyAlgorithmParams* hmacParams() const;
|
| - BLINK_PLATFORM_EXPORT WebCryptoRsaKeyAlgorithmParams* rsaParams() const;
|
| BLINK_PLATFORM_EXPORT WebCryptoRsaHashedKeyAlgorithmParams* rsaHashedParams() const;
|
|
|
| private:
|
|
|