#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Pbes2 {
Hs256Aes128,
Hs384Aes192,
Hs512Aes256,
}
impl From<Pbes2> for super::JsonWebEncryptionAlgorithm {
fn from(x: Pbes2) -> Self {
Self::Pbes2(x)
}
}
impl From<Pbes2> for super::JsonWebAlgorithm {
fn from(x: Pbes2) -> Self {
Self::Encryption(super::JsonWebEncryptionAlgorithm::Pbes2(x))
}
}