use libc::c_uint;
pub const TOKEN_TYPE_KEY: &str = "type";
pub const TOKEN_KEYSLOTS_KEY: &str = "keyslots";
pub const STRATIS_TOKEN_DEVNAME_KEY: &str = "activation_name";
pub const STRATIS_TOKEN_POOL_UUID_KEY: &str = "pool_uuid";
pub const STRATIS_TOKEN_DEV_UUID_KEY: &str = "device_uuid";
pub const STRATIS_TOKEN_ID: c_uint = 0;
pub const LUKS2_TOKEN_ID: c_uint = 1;
pub const CLEVIS_LUKS_TOKEN_ID: c_uint = 2;
pub const LUKS2_TOKEN_TYPE: &str = "luks2-keyring";
pub const STRATIS_TOKEN_TYPE: &str = "stratis";
pub const STRATIS_MEK_SIZE: usize = 512 / 8;
pub const SECTOR_SIZE: u64 = 512;
pub const DEVICEMAPPER_PATH: &str = "/dev/mapper";
pub const CLEVIS_TANG_TRUST_URL: &str = "stratis:tang:trust_url";
pub const DEFAULT_CRYPT_METADATA_SIZE: u64 = 16384;
pub const DEFAULT_CRYPT_KEYSLOTS_SIZE: u64 = 16_744_448;