Chromium Code Reviews| Index: chromeos/dbus/easy_unlock_client.h |
| diff --git a/chromeos/dbus/easy_unlock_client.h b/chromeos/dbus/easy_unlock_client.h |
| index 0cbad74b7619992a95936c2bc35dc539eb36fa8e..9aab4468257bb1df798180d5da3749f36158ae56 100644 |
| --- a/chromeos/dbus/easy_unlock_client.h |
| +++ b/chromeos/dbus/easy_unlock_client.h |
| @@ -62,6 +62,9 @@ class CHROMEOS_EXPORT EasyUnlockClient : public DBusClient { |
| // set if the message is signed with private asymetric key. This value |
| // is used by the receiver to identify the public key that should be used |
| // to verify the signature. |
| + // |decryption_key_id|: Key id added to the message header. Used by the |
| + // message receiver to identify the key that should be used to decrypt |
| + // the message. |
| // |encryption_type|: The encryption algorithm to use for encrypting the |
| // message. (May be set to none). |
| // |signature_type|: The algorithm to use to sign the message. |
| @@ -72,6 +75,7 @@ class CHROMEOS_EXPORT EasyUnlockClient : public DBusClient { |
| const std::string& associated_data, |
| const std::string& public_metadata, |
| const std::string& verification_key_id, |
| + const std::string& decryption_key_id, |
| const std::string& encryption_type, |
| const std::string& signature_type, |
| const DataCallback& callback) = 0; |
|
stevenjb
2014/09/02 16:09:25
nit: For future consideration, passing this many a
|