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

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

Issue 21561004: WebCrypto: Add crypto.subtle.verify() to the platform interfaces. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add missing file common.js 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
Index: Source/modules/crypto/SubtleCrypto.idl
diff --git a/Source/modules/crypto/SubtleCrypto.idl b/Source/modules/crypto/SubtleCrypto.idl
index f212d2b8714ab282175db51cde1abd52dfeba31e..a1938853d84cd93bb3fe2132727092b3080f7ca2 100644
--- a/Source/modules/crypto/SubtleCrypto.idl
+++ b/Source/modules/crypto/SubtleCrypto.idl
@@ -34,7 +34,7 @@
[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, ImplementedAs=verifySignature] CryptoOperation verify(Dictionary algorithm, Key key, ArrayBufferView signature);
[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') | Tools/DumpRenderTree/chromium/TestRunner/src/MockWebCrypto.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698