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

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: move ASSERT(), add break 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 | « no previous file | Source/bindings/modules/v8/ScriptValueSerializerForModules.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..7d311462023400c2d56be7f8ae5cdcb28b16a78c 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 doWriteKeyWithoutParams(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 doReadKeyWithoutParams(WebCryptoKeyAlgorithm&, WebCryptoKeyType&);
bool doReadAlgorithmId(WebCryptoAlgorithmId&);
bool doReadAsymmetricKeyType(WebCryptoKeyType&);
bool doReadNamedCurve(WebCryptoNamedCurve&);
« no previous file with comments | « no previous file | Source/bindings/modules/v8/ScriptValueSerializerForModules.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698