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

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: Use PKCS5_PBKDF2_HMAC() from BoringSSL 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
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 aa1aa65580ca364a4c5a32a6e8f09f8ad9c00ce5..30d6889f8dd08e4ecc8a47951960e12a357f684f 100644
--- a/content/child/webcrypto/nss/util_nss.cc
+++ b/content/child/webcrypto/nss/util_nss.cc
@@ -101,6 +101,11 @@ AlgorithmImplementation* CreatePlatformEcdhImplementation() {
return NULL;
}
+AlgorithmImplementation* CreatePlatformPbkdf2Implementation() {
+ // TODO(xsun): http://crbug.com/399099
eroman 2015/01/09 02:26:21 Rather than a TODO you can leave this as: // PBKD
xun.sun 2015/01/09 16:08:40 Done.
+ return NULL;
+}
+
} // namespace webcrypto
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698