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

Unified Diff: public/platform/WebCryptoKeyAlgorithmParams.h

Issue 820523003: [webcrypto] Implement PBKDF2 (blink-side) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added Layout tests 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: public/platform/WebCryptoKeyAlgorithmParams.h
diff --git a/public/platform/WebCryptoKeyAlgorithmParams.h b/public/platform/WebCryptoKeyAlgorithmParams.h
index 3450c02e427ae1c2eaeaaf52f5372e84a12a8c7a..19cbb5c9de3a82896854f55ddf2debb7aaa53d21 100644
--- a/public/platform/WebCryptoKeyAlgorithmParams.h
+++ b/public/platform/WebCryptoKeyAlgorithmParams.h
@@ -206,6 +206,13 @@ private:
const WebCryptoNamedCurve m_namedCurve;
};
+class WebCryptoPbkdf2KeyAlgorithmParams : public WebCryptoKeyAlgorithmParams {
+public:
+ explicit WebCryptoPbkdf2KeyAlgorithmParams() { }
+ virtual void writeToDictionary(WebCryptoKeyAlgorithmDictionary* dict) const
+ {
+ }
+};
} // namespace blink
#endif
« LayoutTests/crypto/subtle/pbkdf2-deriveBits.html ('K') | « public/platform/WebCryptoKeyAlgorithm.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698