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

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

Issue 23617006: WebCrypto: Add the KeyPair interface. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase onto master Created 7 years, 4 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/KeyPair.cpp ('k') | Source/modules/modules.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/KeyPair.idl
diff --git a/Source/modules/crypto/AesCbcParams.idl b/Source/modules/crypto/KeyPair.idl
similarity index 94%
copy from Source/modules/crypto/AesCbcParams.idl
copy to Source/modules/crypto/KeyPair.idl
index b068ec9586cc8caffbb7c33b60fa19a811347d9f..538f85a74b28915783911ba40fcedd65b26ca40a 100644
--- a/Source/modules/crypto/AesCbcParams.idl
+++ b/Source/modules/crypto/KeyPair.idl
@@ -30,6 +30,7 @@
[
NoInterfaceObject,
-] interface AesCbcParams : Algorithm {
- readonly attribute Uint8Array iv;
+] interface KeyPair {
+ readonly attribute Key publicKey;
+ readonly attribute Key privateKey;
};
« no previous file with comments | « Source/modules/crypto/KeyPair.cpp ('k') | Source/modules/modules.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698