| Index: content/renderer/webcrypto/webcrypto_impl_openssl.cc
|
| diff --git a/content/renderer/webcrypto/webcrypto_impl_openssl.cc b/content/renderer/webcrypto/webcrypto_impl_openssl.cc
|
| index 99cf37ac38b279715c5a7273f2ea947fa1f38e61..979d51d37ae409e462489ff0fba201744e66557c 100644
|
| --- a/content/renderer/webcrypto/webcrypto_impl_openssl.cc
|
| +++ b/content/renderer/webcrypto/webcrypto_impl_openssl.cc
|
| @@ -485,4 +485,18 @@ bool WebCryptoImpl::VerifySignatureInternal(
|
| return true;
|
| }
|
|
|
| +bool WebCryptoImpl::ImportRsaPublicKeyInternal(
|
| + const unsigned char* modulus_data,
|
| + unsigned modulus_size,
|
| + const unsigned char* exponent_data,
|
| + unsigned exponent_size,
|
| + const blink::WebCryptoAlgorithm& algorithm,
|
| + bool extractable,
|
| + blink::WebCryptoKeyUsageMask usage_mask,
|
| + blink::WebCryptoKey* key) {
|
| + // TODO(padolph): Placeholder for OpenSSL implementation.
|
| + // Issue http://crbug.com/267888.
|
| + return false;
|
| +}
|
| +
|
| } // namespace content
|
|
|