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 5fdee3965c814dd3959ab692829af26292d48b0c..48d7f2b7e8a35097cf5a930bc30e0c32b715a51b 100644 |
--- a/content/child/webcrypto/platform_crypto_openssl.cc |
+++ b/content/child/webcrypto/platform_crypto_openssl.cc |
@@ -387,6 +387,15 @@ Status ExportKeySpki(PublicKey* key, blink::WebArrayBuffer* buffer) { |
return Status::ErrorUnsupported(); |
} |
+// Preconditions: |
+// * |key| is non-null. |
+Status ExportRsaPublicKey(PublicKey* key, |
+ blink::WebArrayBuffer* modulus, |
+ blink::WebArrayBuffer* public_exponent) { |
+ // TODO(eroman): http://crbug.com/267888 |
+ return Status::ErrorUnsupported(); |
+} |
+ |
Status WrapSymKeyAesKw(SymKey* wrapping_key, |
SymKey* key, |
blink::WebArrayBuffer* buffer) { |