This source file includes following definitions.
- label
- label
- privileges
#include "chromeos/cryptohome/cryptohome_parameters.h"
namespace cryptohome {
Authorization::Authorization(const std::string& key, const std::string& label)
: key(key), label(label) {}
Authorization::Authorization(const KeyDefinition& key_def)
: key(key_def.key), label(key_def.label) {}
MountParameters::MountParameters(bool ephemeral) : ephemeral(ephemeral) {}
MountParameters::~MountParameters() {}
KeyDefinition::KeyDefinition(const std::string& key,
const std::string& label,
int privileges)
: label(label), revision(1), key(key), privileges(privileges) {}
KeyDefinition::~KeyDefinition() {}
}