pub trait KeyManager: Send + Sync { // Required method fn get_secret_key(&self, public_key: &PublicKey) -> Option<SecretKey>; }