//! Roughtime wire-format tag constants.
/// `NONC` — the client's nonce.
pub const TAG_NONC: u32 = 0x434e_4f4e;
/// `PAD\xff` — padding to reach the minimum request size.
pub const TAG_PAD: u32 = 0xff44_4150;
/// `CERT` — the server's delegation certificate.
pub const TAG_CERT: u32 = 0x5452_4543;
/// `SIG\x00` — a signature.
pub const TAG_SIG: u32 = 0x0047_4953;
/// `SREP` — the signed response payload.
pub const TAG_SREP: u32 = 0x5045_5253;
/// `DELE` — the delegation payload.
pub const TAG_DELE: u32 = 0x454c_4544;
/// `PUBK` — the delegated (online) public key.
pub const TAG_PUBK: u32 = 0x4b42_5550;
/// `MINT` — the delegation's validity-interval start.
pub const TAG_MINT: u32 = 0x544e_494d;
/// `MAXT` — the delegation's validity-interval end.
pub const TAG_MAXT: u32 = 0x5458_414d;
/// `ROOT` — the Merkle tree root hash.
pub const TAG_ROOT: u32 = 0x544f_4f52;
/// `MIDP` — the midpoint of the server's reported time interval.
pub const TAG_MIDP: u32 = 0x5044_494d;
/// `RADI` — the radius of the server's reported time interval.
pub const TAG_RADI: u32 = 0x4944_4152;
/// `INDX` — this response's index into the Merkle tree.
pub const TAG_INDX: u32 = 0x5844_4e49;
/// `PATH` — the Merkle inclusion proof path.
pub const TAG_PATH: u32 = 0x4854_4150;