| Index: public/platform/WebCryptoAlgorithmParams.h
|
| diff --git a/public/platform/WebCryptoAlgorithmParams.h b/public/platform/WebCryptoAlgorithmParams.h
|
| index 7562ce497c565331954a9e305aa1a0ee1ab389b4..712e12f8cb11274658b40cb1f0a25e9e663e5329 100644
|
| --- a/public/platform/WebCryptoAlgorithmParams.h
|
| +++ b/public/platform/WebCryptoAlgorithmParams.h
|
| @@ -61,7 +61,7 @@ private:
|
|
|
| class WebCryptoAesCbcParams : public WebCryptoAlgorithmParams {
|
| public:
|
| - WebCryptoAesCbcParams(unsigned char* iv, size_t ivSize)
|
| + WebCryptoAesCbcParams(unsigned char* iv, unsigned ivSize)
|
| : WebCryptoAlgorithmParams(WebCryptoAlgorithmParamsTypeAesCbcParams)
|
| , m_iv(iv, ivSize)
|
| {
|
| @@ -145,7 +145,7 @@ private:
|
|
|
| class WebCryptoRsaKeyGenParams : public WebCryptoAlgorithmParams {
|
| public:
|
| - WebCryptoRsaKeyGenParams(unsigned modulusLength, const unsigned char* publicExponent, size_t publicExponentSize)
|
| + WebCryptoRsaKeyGenParams(unsigned modulusLength, const unsigned char* publicExponent, unsigned publicExponentSize)
|
| : WebCryptoAlgorithmParams(WebCryptoAlgorithmParamsTypeRsaKeyGenParams)
|
| , m_modulusLength(modulusLength)
|
| , m_publicExponent(publicExponent, publicExponentSize)
|
|
|