bc_components

Trait PrivateKeyDataProvider

Source
pub trait PrivateKeyDataProvider {
    // Required method
    fn private_key_data(&self) -> Vec<u8> ;
}
Expand description

Types can implement to PrivateKeyDataProvider to indicate that they will provide unique data from which keys for signing and encryption can be derived.

Required Methods§

Source

fn private_key_data(&self) -> Vec<u8>

Returns the private key data.

Implementations on Foreign Types§

Source§

impl PrivateKeyDataProvider for dyn AsRef<[u8]>

Implementors§