Skip to main content

EncryptionParamsIdentifier

Trait EncryptionParamsIdentifier 

Source
pub trait EncryptionParamsIdentifier {
    // Required method
    fn botan_name(&self) -> String;
}
Expand description

A type that identifies the parameters of a Botan public key encryption scheme.

Required Methods§

Source

fn botan_name(&self) -> String

Return the Botan interface string for this identifier.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl EncryptionParamsIdentifier for Option<EncryptionParams>

Source§

impl EncryptionParamsIdentifier for String

Source§

impl EncryptionParamsIdentifier for str

Source§

impl<T: EncryptionParamsIdentifier + ?Sized> EncryptionParamsIdentifier for &T

Implementors§