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

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

Required Methods§

source

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

Returns the private key data.

Implementations on Foreign Types§

source§

impl PrivateKeysDataProvider for dyn AsRef<[u8]>

Implementors§