Index: content/renderer/webcrypto_impl_openssl.cc |
diff --git a/content/renderer/webcrypto_impl_openssl.cc b/content/renderer/webcrypto_impl_openssl.cc |
index 0af2fab235d24de7ccb91b121972b497815abab0..dfbc0c21bff3e1a526d2c5371d9da040df0d9670 100644 |
--- a/content/renderer/webcrypto_impl_openssl.cc |
+++ b/content/renderer/webcrypto_impl_openssl.cc |
@@ -18,6 +18,15 @@ bool WebCryptoImpl::EncryptInternal( |
return false; |
} |
+bool WebCryptoImpl::DecryptInternal( |
+ const WebKit::WebCryptoAlgorithm& algorithm, |
+ const WebKit::WebCryptoKey& key, |
+ const unsigned char* data, |
+ unsigned data_size, |
+ WebKit::WebArrayBuffer* buffer) { |
+ return false; |
+} |
+ |
bool WebCryptoImpl::DigestInternal( |
const WebKit::WebCryptoAlgorithm& algorithm, |
const unsigned char* data, |