use crate::algorithm;
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
#[allow(non_camel_case_types)]
#[repr(u8)]
pub enum Algorithm {
AES128_CCM = 0x1d,
AES192_CCM = 0x29,
AES256_CCM = 0x2a,
}
impl Algorithm {
pub fn from_u8(tag: u8) -> Result<Self, algorithm::Error> {
Ok(match tag {
0x1d => Algorithm::AES128_CCM,
0x29 => Algorithm::AES192_CCM,
0x2a => Algorithm::AES256_CCM,
_ => fail!(
algorithm::ErrorKind::TagInvalid,
"unknown wrap algorithm ID: 0x{:02x}",
tag
),
})
}
pub fn to_u8(self) -> u8 {
self as u8
}
pub fn key_len(self) -> usize {
match self {
Algorithm::AES128_CCM => 16,
Algorithm::AES192_CCM => 24,
Algorithm::AES256_CCM => 32,
}
}
}
impl_algorithm_serializers!(Algorithm);