summaryrefslogtreecommitdiffstats
path: root/content/renderer/webcrypto/webcrypto_impl_openssl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/renderer/webcrypto/webcrypto_impl_openssl.cc')
-rw-r--r--content/renderer/webcrypto/webcrypto_impl_openssl.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/content/renderer/webcrypto/webcrypto_impl_openssl.cc b/content/renderer/webcrypto/webcrypto_impl_openssl.cc
index 83ae45c..23f89c2 100644
--- a/content/renderer/webcrypto/webcrypto_impl_openssl.cc
+++ b/content/renderer/webcrypto/webcrypto_impl_openssl.cc
@@ -299,6 +299,17 @@ bool WebCryptoImpl::GenerateKeyInternal(
return true;
}
+bool WebCryptoImpl::GenerateKeyPairInternal(
+ const WebKit::WebCryptoAlgorithm& algorithm,
+ bool extractable,
+ WebKit::WebCryptoKeyUsageMask usage_mask,
+ WebKit::WebCryptoKey* public_key,
+ WebKit::WebCryptoKey* private_key) {
+ // TODO(padolph): Placeholder for OpenSSL implementation.
+ // Issue http://crbug.com/267888.
+ return false;
+}
+
bool WebCryptoImpl::ImportKeyInternal(
WebKit::WebCryptoKeyFormat format,
const unsigned char* key_data,