use crate::algorithm;
use anomaly::fail;
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
#[repr(u8)]
pub enum Algorithm {
Aes128 = 0x25,
Aes192 = 0x27,
Aes256 = 0x28,
}
impl Algorithm {
pub fn from_u8(tag: u8) -> Result<Self, algorithm::Error> {
Ok(match tag {
0x25 => Algorithm::Aes128,
0x27 => Algorithm::Aes192,
0x28 => Algorithm::Aes256,
_ => fail!(
algorithm::ErrorKind::TagInvalid,
"unknown OTP algorithm ID: 0x{:02x}",
tag
),
})
}
pub fn to_u8(self) -> u8 {
self as u8
}
pub fn key_len(self) -> usize {
match self {
Algorithm::Aes128 => 16,
Algorithm::Aes192 => 24,
Algorithm::Aes256 => 32,
}
}
}
impl_algorithm_serializers!(Algorithm);