Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Unified Diff: content/child/webcrypto/nss/util_nss.cc

Issue 491763002: [webcrypto] Implement AES-CTR using BoringSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase onto master (moves unittest to its own file) Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/webcrypto/algorithm_registry.cc ('k') | content/child/webcrypto/openssl/aes_cbc_openssl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/webcrypto/nss/util_nss.cc
diff --git a/content/child/webcrypto/nss/util_nss.cc b/content/child/webcrypto/nss/util_nss.cc
index dd0ef3c3d35a1e93a10f672f7886056751c21c3c..eb516e049a0b61804939db1b940f5a90ebf7fbe9 100644
--- a/content/child/webcrypto/nss/util_nss.cc
+++ b/content/child/webcrypto/nss/util_nss.cc
@@ -6,6 +6,7 @@
#include "base/lazy_instance.h"
#include "content/child/webcrypto/crypto_data.h"
+#include "content/child/webcrypto/platform_crypto.h"
#include "crypto/nss_util.h"
#include "crypto/scoped_nss_types.h"
@@ -79,6 +80,11 @@ void PlatformInit() {
crypto::EnsureNSSInit();
}
+AlgorithmImplementation* CreatePlatformAesCtrImplementation() {
+ // TODO(eroman): http://crbug.com/399084
+ return NULL;
+}
+
} // namespace webcrypto
} // namespace content
« no previous file with comments | « content/child/webcrypto/algorithm_registry.cc ('k') | content/child/webcrypto/openssl/aes_cbc_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698