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

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

Issue 661653002: [webcrypto] Implement RSA-PSS using BoringSSL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor_rsassa
Patch Set: Created 6 years, 2 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 eb516e049a0b61804939db1b940f5a90ebf7fbe9..58201cb47dc2a71f9201df1aa232b4270071e90c 100644
--- a/content/child/webcrypto/nss/util_nss.cc
+++ b/content/child/webcrypto/nss/util_nss.cc
@@ -85,6 +85,11 @@ AlgorithmImplementation* CreatePlatformAesCtrImplementation() {
return NULL;
}
+AlgorithmImplementation* CreatePlatformRsaPssImplementation() {
+ // TODO(eroman): http://crbug.com/399090
+ return NULL;
+}
+
} // namespace webcrypto
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698