pub trait PrivateKeysDataProvider {
// Required method
fn private_keys_data(&self) -> Bytes;
}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§
sourcefn private_keys_data(&self) -> Bytes
fn private_keys_data(&self) -> Bytes
Returns the private key data.