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

Unified Diff: chromeos/cryptohome/cryptohome_parameters.h

Issue 526353002: Merge cryptohome::RetrievedKeyData with cryptohome::KeyDefinition (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@d_2_367847_add_get_key_data_ex_to_mount_flow
Patch Set: Rebased. Created 6 years, 3 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: chromeos/cryptohome/cryptohome_parameters.h
diff --git a/chromeos/cryptohome/cryptohome_parameters.h b/chromeos/cryptohome/cryptohome_parameters.h
index fe43f2c21a8d05969c87c3d60db0348d512d6e55..2ec1d403aebc3d1398fd24aa78458a9b0d8df9d1 100644
--- a/chromeos/cryptohome/cryptohome_parameters.h
+++ b/chromeos/cryptohome/cryptohome_parameters.h
@@ -10,7 +10,6 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
-#include "base/memory/scoped_vector.h"
#include "chromeos/chromeos_export.h"
namespace cryptohome {
@@ -34,68 +33,96 @@ struct CHROMEOS_EXPORT Identification {
};
// Definition of the key (e.g. password) for the cryptohome.
-// It contains authorization data along with extra parameters like perimissions
+// It contains authorization data along with extra parameters like permissions
// associated with this key.
struct CHROMEOS_EXPORT KeyDefinition {
- KeyDefinition(const std::string& key,
- const std::string& label,
- int /*AuthKeyPrivileges*/ privileges);
- ~KeyDefinition();
-
- bool operator==(const KeyDefinition& other) const;
-
- std::string label;
-
- int revision;
- std::string key;
-
- std::string encryption_key;
- std::string signature_key;
- // Privileges associated with key. Combination of |AuthKeyPrivileges| values.
- int privileges;
-};
-
-// Authorization attempt data for user.
-struct CHROMEOS_EXPORT Authorization {
- Authorization(const std::string& key, const std::string& label);
- explicit Authorization(const KeyDefinition& key);
-
- bool operator==(const Authorization& other) const;
-
- std::string key;
- std::string label;
-};
-
-// Information about keys returned by GetKeyDataEx().
-struct CHROMEOS_EXPORT RetrievedKeyData {
enum Type {
TYPE_PASSWORD = 0
};
- enum AuthorizationType {
- AUTHORIZATION_TYPE_HMACSHA256 = 0,
- AUTHORIZATION_TYPE_AES256CBC_HMACSHA256
+ struct AuthorizationData {
+ enum Type {
+ TYPE_HMACSHA256 = 0,
+ TYPE_AES256CBC_HMACSHA256
+ };
+
+ struct Secret {
+ Secret();
+ Secret(bool encrypt,
+ bool sign,
+ const std::string& symmetric_key,
+ const std::string& public_key,
+ bool wrapped);
+
+ bool operator==(const Secret& other) const;
+
+ bool encrypt;
+ bool sign;
+ std::string symmetric_key;
+ std::string public_key;
+ bool wrapped;
+ };
+
+ AuthorizationData();
+ AuthorizationData(bool encrypt,
+ bool sign,
+ const std::string& symmetric_key);
+ ~AuthorizationData();
+
+ bool operator==(const AuthorizationData& other) const;
+
+ Type type;
+ std::vector<Secret> secrets;
};
+ // This struct holds metadata that will be stored alongside the key. Each
+ // |ProviderData| entry must have a |name| and may hold either a |number| or a
+ // sequence of |bytes|. The metadata is entirely opaque to cryptohome. It is
+ // stored with the key and returned when requested but is never interpreted by
+ // cryptohome in any way. The metadata can be used to store information such
+ // as the hashing algorithm and the salt used to create the key.
struct ProviderData {
+ ProviderData();
explicit ProviderData(const std::string& name);
+ explicit ProviderData(const ProviderData& other);
+ void operator=(const ProviderData& other);
~ProviderData();
+ bool operator==(const ProviderData& other) const;
+
std::string name;
scoped_ptr<int64> number;
scoped_ptr<std::string> bytes;
};
- RetrievedKeyData(Type type, const std::string& label, int64 revision);
- ~RetrievedKeyData();
+ KeyDefinition();
+ KeyDefinition(const std::string& secret,
+ const std::string& label,
+ int privileges);
+ ~KeyDefinition();
+
+ bool operator==(const KeyDefinition& other) const;
Type type;
std::string label;
// Privileges associated with key. Combination of |AuthKeyPrivileges| values.
int privileges;
- int64 revision;
- std::vector<AuthorizationType> authorization_types;
- ScopedVector<ProviderData> provider_data;
+ int revision;
+ std::string secret;
+
+ std::vector<AuthorizationData> authorization_data;
+ std::vector<ProviderData> provider_data;
+};
+
+// Authorization attempt data for user.
+struct CHROMEOS_EXPORT Authorization {
+ Authorization(const std::string& key, const std::string& label);
+ explicit Authorization(const KeyDefinition& key);
+
+ bool operator==(const Authorization& other) const;
+
+ std::string key;
+ std::string label;
};
// Parameters for Mount call.
« no previous file with comments | « chrome/browser/supervised_user/chromeos/manager_password_service.cc ('k') | chromeos/cryptohome/cryptohome_parameters.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698