use bitflags::bitflags;
bitflags! {
#[derive(Debug, Eq, PartialEq, Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
#[repr(C)]
pub struct VerificationRelationship: u8 {
const Authentication = (1 << 0);
const Assertion = (1 << 1);
const KeyAgreement = (1 << 2);
}
}
#[derive(Debug, thiserror::Error)]
pub enum ParseVerificationRelationshipErr {
#[error("failed to decode verification relationship using base32z")]
VrNotB64(#[from] base64::DecodeError),
}