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

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

Issue 20914002: Revert "WebCrypto: Add the Key parameter to a number of operations." (r155013). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | « Source/modules/crypto/SubtleCrypto.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/SubtleCrypto.idl
diff --git a/Source/modules/crypto/SubtleCrypto.idl b/Source/modules/crypto/SubtleCrypto.idl
index f212d2b8714ab282175db51cde1abd52dfeba31e..d8f93f4c00424ce5a2af3aa56835f29660a8cace 100644
--- a/Source/modules/crypto/SubtleCrypto.idl
+++ b/Source/modules/crypto/SubtleCrypto.idl
@@ -31,10 +31,10 @@
[
NoInterfaceObject,
] interface SubtleCrypto {
- [RaisesException] CryptoOperation encrypt(Dictionary algorithm, Key key);
- [RaisesException] CryptoOperation decrypt(Dictionary algorithm, Key key);
- [RaisesException] CryptoOperation sign(Dictionary algorithm, Key key);
- [RaisesException, ImplementedAs=verifySignature] CryptoOperation verify(Dictionary algorithm, Key key);
+ [RaisesException] CryptoOperation encrypt(Dictionary algorithm);
+ [RaisesException] CryptoOperation decrypt(Dictionary algorithm);
+ [RaisesException] CryptoOperation sign(Dictionary algorithm);
+ [RaisesException, ImplementedAs=verifySignature] CryptoOperation verify(Dictionary algorithm);
[RaisesException] CryptoOperation digest(Dictionary algorithm);
[RaisesException] any importKey(DOMString format, ArrayBufferView keyData, Dictionary algorithm, boolean extractable, DOMString[] keyUsages);
« no previous file with comments | « Source/modules/crypto/SubtleCrypto.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698