| 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 30825a89b219bee5ed0a51ee4d8e456af4096fa5..46a20e4d072cffb5cb10626859aa301c12b3a491 100644
|
| --- a/content/child/webcrypto/platform_crypto_openssl.cc
|
| +++ b/content/child/webcrypto/platform_crypto_openssl.cc
|
| @@ -394,6 +394,13 @@ Status ExportKeyPkcs8(PrivateKey* key,
|
| return Status::ErrorUnsupported();
|
| }
|
|
|
| +Status ExportRsaPublicKey(PublicKey* key,
|
| + std::vector<uint8>* modulus,
|
| + std::vector<uint8>* public_exponent) {
|
| + // TODO(eroman): http://crbug.com/267888
|
| + return Status::ErrorUnsupported();
|
| +}
|
| +
|
| Status WrapSymKeyAesKw(SymKey* wrapping_key,
|
| SymKey* key,
|
| blink::WebArrayBuffer* buffer) {
|
|
|