package constants // Name refers to a Profile Name const Name = "name" // Tag describes the type of a profile e.g. default password / encrypted etc. const Tag = "tag" // ProfileTypeV1DefaultPassword is a tag describing a profile protected with the default password. const ProfileTypeV1DefaultPassword = "v1-defaultPassword" // ProfileTypeV1Password is a tag describing a profile encrypted derived from a user-provided password. const ProfileTypeV1Password = "v1-userPassword"