pub mod authority;
pub mod collection;
pub mod profile;
pub use p256::{ecdsa::SigningKey, SecretKey};
pub use crate::{authority::Authority, profile::ProfileExtractor};
use bitflags::bitflags;
bitflags! {
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct Ustc: u8 {
const UID = 1;
const GID = 1 << 1;
const SEX = 1 << 2;
const NAME = 1 << 3;
const DEPT = 1 << 4;
const EMAIL = 1 << 5;
}
}