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

Unified Diff: chrome/common/extensions/api/easy_unlock_private.idl

Issue 518643002: Add ability to pass decryption key id to CreateSecureMessage method (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 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
Index: chrome/common/extensions/api/easy_unlock_private.idl
diff --git a/chrome/common/extensions/api/easy_unlock_private.idl b/chrome/common/extensions/api/easy_unlock_private.idl
index 5a33e5e26457c0396b4b87bca1bab50e21dd725d..6766a00d61d852264fae622f1f2391fee133181c 100644
--- a/chrome/common/extensions/api/easy_unlock_private.idl
+++ b/chrome/common/extensions/api/easy_unlock_private.idl
@@ -77,11 +77,15 @@
ArrayBuffer? publicMetadata;
// Verification key id added to the message header. Should be set if the
- // message is signed using |ECDSA_P256_SHA256|. It's used by the message
+ // message is signed using |ECDSA_P256_SHA256|. Used by the message
// recepient to determine which key should be used to verify the message
// signature.
ArrayBuffer? verificationKeyId;
+ // Decryption key id added to the message header. Used by the message
+ // recepient to determine which key should be used to decrypt the message.
+ ArrayBuffer? decryptionKeyId;
+
// The encryption algorithm that should be used to encrypt the message.
// Should not be set for a cleartext message.
EncryptionType? encryptType;

Powered by Google App Engine
This is Rietveld 408576698