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

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

Issue 797723006: Implement PBKDF2 (except for generateKey) using BoringSSL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pbkdf2
Patch Set: Created 5 years, 11 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/pbkdf2_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 4b604d8080d7a6871c334df75618cb41369b4e3a..e313a55a967350163128f36ef15a0b0ba76498ee 100644
--- a/content/child/webcrypto/nss/util_nss.cc
+++ b/content/child/webcrypto/nss/util_nss.cc
@@ -106,6 +106,12 @@ AlgorithmImplementation* CreatePlatformHkdfImplementation() {
return NULL;
}
+AlgorithmImplementation* CreatePlatformPbkdf2Implementation() {
+ // PBKDF2 will only be implemented for BoringSSL, since the NSS
+ // implementation is being deprecated.
+ return NULL;
+}
+
} // namespace webcrypto
} // namespace content
« no previous file with comments | « content/child/webcrypto/algorithm_registry.cc ('k') | content/child/webcrypto/openssl/pbkdf2_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698