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

Unified Diff: Source/modules/crypto/SubtleCrypto.idl

Issue 18475002: WebCrypto: Add framework for AlgorithmIdentifier normalization. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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/modules/crypto/SubtleCrypto.idl
diff --git a/Source/modules/crypto/SubtleCrypto.idl b/Source/modules/crypto/SubtleCrypto.idl
index 0c2a8e43c39b3c172e9230581b3711da81ae7cff..9c9c5aadf7e493220c95a239da8d1d18ea36e8c8 100644
--- a/Source/modules/crypto/SubtleCrypto.idl
+++ b/Source/modules/crypto/SubtleCrypto.idl
@@ -30,5 +30,10 @@
NoInterfaceObject,
] interface SubtleCrypto {
// TODO(eroman): Work in progress: http://crbug.com/245025.
abarth-chromium 2013/07/02 06:46:36 Please remove this comment. All code is a work in
eroman 2013/07/02 08:12:27 Done.
+ [RaisesException] CryptoOperation encrypt(Dictionary algorithm);
+ [RaisesException] CryptoOperation decrypt(Dictionary algorithm);
+ [RaisesException] CryptoOperation sign(Dictionary algorithm);
+ [RaisesException] CryptoOperation verify(Dictionary algorithm);
+ [RaisesException] CryptoOperation digest(Dictionary algorithm);
};

Powered by Google App Engine
This is Rietveld 408576698