use crate::{
constants::tss::{TPM2_SE_HMAC, TPM2_SE_POLICY, TPM2_SE_TRIAL},
tss2_esys::TPM2_SE,
Error, Result, WrapperErrorKind,
};
use log::error;
use num_derive::{FromPrimitive, ToPrimitive};
use num_traits::{FromPrimitive, ToPrimitive};
use std::convert::TryFrom;
#[derive(FromPrimitive, ToPrimitive, Debug, Copy, Clone, PartialEq, Eq)]
#[repr(u8)]
pub enum SessionType {
Hmac = TPM2_SE_HMAC,
Policy = TPM2_SE_POLICY,
Trial = TPM2_SE_TRIAL,
}
impl From<SessionType> for TPM2_SE {
fn from(session_type: SessionType) -> TPM2_SE {
session_type.to_u8().unwrap()
}
}
impl TryFrom<TPM2_SE> for SessionType {
type Error = Error;
fn try_from(tpm_session_type: TPM2_SE) -> Result<SessionType> {
SessionType::from_u8(tpm_session_type).ok_or_else(|| {
error!(
"value = {} did not match any SessionType.",
tpm_session_type
);
Error::local_error(WrapperErrorKind::InvalidParam)
})
}
}