pub mod ak;
pub mod cipher;
pub mod ek;
pub mod nv;
pub mod pcr;
pub mod public;
pub mod transient;
use crate::{attributes::ObjectAttributesBuilder, structures::PublicBuilder};
pub trait KeyCustomization {
fn attributes(&self, attributes_builder: ObjectAttributesBuilder) -> ObjectAttributesBuilder {
attributes_builder
}
fn template(&self, template_builder: PublicBuilder) -> PublicBuilder {
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
}
}