pub trait SshKeyStorage: Send + Sync { // Required method fn resolve(&self, host: &str, username: &str) -> Option<PathBuf>; }
This trait must be implemented in order to use ssh keys for authentication for sftp/scp.
Return RSA key path from host and username