| Index: content/child/webcrypto/platform_crypto_openssl.cc
|
| diff --git a/content/child/webcrypto/platform_crypto_openssl.cc b/content/child/webcrypto/platform_crypto_openssl.cc
|
| index 1f2bebef7e4995b101718efcbe9687917d310d9c..1f520e83d276238cd33393c08116ec4753a79ac9 100644
|
| --- a/content/child/webcrypto/platform_crypto_openssl.cc
|
| +++ b/content/child/webcrypto/platform_crypto_openssl.cc
|
| @@ -462,8 +462,8 @@ Status ExportRsaPublicKey(PublicKey* key,
|
| return Status::ErrorUnsupported();
|
| }
|
|
|
| -Status WrapSymKeyAesKw(SymKey* wrapping_key,
|
| - SymKey* key,
|
| +Status WrapSymKeyAesKw(SymKey* key,
|
| + SymKey* wrapping_key,
|
| std::vector<uint8>* buffer) {
|
| // TODO(eroman): http://crbug.com/267888
|
| return Status::ErrorUnsupported();
|
| @@ -486,8 +486,8 @@ Status DecryptAesKw(SymKey* key,
|
| return Status::ErrorUnsupported();
|
| }
|
|
|
| -Status WrapSymKeyRsaEs(PublicKey* wrapping_key,
|
| - SymKey* key,
|
| +Status WrapSymKeyRsaEs(SymKey* key,
|
| + PublicKey* wrapping_key,
|
| std::vector<uint8>* buffer) {
|
| // TODO(eroman): http://crbug.com/267888
|
| return Status::ErrorUnsupported();
|
|
|