pub mod ak;
pub mod cipher;
pub mod ek;
pub mod nv;
pub mod transient;
use crate::attributes::ObjectAttributesBuilder;
use crate::utils::Tpm2BPublicBuilder;
pub trait KeyCustomization {
fn attributes(&self, attributes_builder: ObjectAttributesBuilder) -> ObjectAttributesBuilder {
attributes_builder
}
fn template(&self, template_builder: Tpm2BPublicBuilder) -> Tpm2BPublicBuilder {
template_builder
}
}
pub trait IntoKeyCustomization {
type T: KeyCustomization;
fn into_key_customization(self) -> Option<Self::T>;
}
impl<T: KeyCustomization> IntoKeyCustomization for T {
type T = T;
fn into_key_customization(self) -> Option<Self::T> {
Some(self)
}
}
#[derive(Debug, Copy, Clone)]
pub struct DefaultKey;
#[derive(Debug, Copy, Clone)]
pub struct DefaultKeyImpl;
impl KeyCustomization for DefaultKeyImpl {}
impl IntoKeyCustomization for DefaultKey {
type T = DefaultKeyImpl;
fn into_key_customization(self) -> Option<Self::T> {
None
}
}
impl IntoKeyCustomization for Option<DefaultKey> {
type T = DefaultKeyImpl;
fn into_key_customization(self) -> Option<Self::T> {
None
}
}