pub trait KeyCustomization {
    fn attributes(
        &self,
        attributes_builder: ObjectAttributesBuilder
    ) -> ObjectAttributesBuilder { ... }
fn template(&self, template_builder: PublicBuilder) -> PublicBuilder { ... } }
Expand description

KeyCustomizaion allows to adjust how a key is going to be created

Provided methods

Alter the attributes used on key creation

Alter the key template used on key creation

Implementors