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