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

Unified Diff: Source/bindings/modules/v8/ScriptValueSerializerForModules.h

Issue 789733009: Implement HKDF for WebCrypto (blink-side) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add serialization/deserialization 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: Source/bindings/modules/v8/ScriptValueSerializerForModules.h
diff --git a/Source/bindings/modules/v8/ScriptValueSerializerForModules.h b/Source/bindings/modules/v8/ScriptValueSerializerForModules.h
index 16fbf74c30833e59737bfa3d2d4c6b0cd4fff4e2..30b6f335611fefb4da611ef8c5c3ffd6194923dc 100644
--- a/Source/bindings/modules/v8/ScriptValueSerializerForModules.h
+++ b/Source/bindings/modules/v8/ScriptValueSerializerForModules.h
@@ -30,6 +30,7 @@ private:
void doWriteAesKey(const WebCryptoKey&);
void doWriteRsaHashedKey(const WebCryptoKey&);
void doWriteEcKey(const WebCryptoKey&);
+ void doWriteKdfKey(const WebCryptoKey&);
void doWriteAlgorithmId(WebCryptoAlgorithmId);
void doWriteAsymmetricKeyType(WebCryptoKeyType);
void doWriteNamedCurve(WebCryptoNamedCurve);
@@ -56,6 +57,7 @@ private:
bool doReadAesKey(WebCryptoKeyAlgorithm&, WebCryptoKeyType&);
bool doReadRsaHashedKey(WebCryptoKeyAlgorithm&, WebCryptoKeyType&);
bool doReadEcKey(WebCryptoKeyAlgorithm&, WebCryptoKeyType&);
+ bool doReadKdfKey(WebCryptoKeyAlgorithm&, WebCryptoKeyType&);
bool doReadAlgorithmId(WebCryptoAlgorithmId&);
bool doReadAsymmetricKeyType(WebCryptoKeyType&);
bool doReadNamedCurve(WebCryptoNamedCurve&);

Powered by Google App Engine
This is Rietveld 408576698