SSHKeyInfo holds metadata about a discovered SSH key
| 15 | |
| 16 | // SSHKeyInfo holds metadata about a discovered SSH key |
| 17 | type SSHKeyInfo struct { |
| 18 | Path string |
| 19 | Filename string |
| 20 | IsEncrypted bool |
| 21 | Alias string // Suggested alias |
| 22 | } |
| 23 | |
| 24 | // importSSHKeys scans ~/.ssh/ and interactively imports discovered keys |
| 25 | func importSSHKeys() error { |
nothing calls this directly
no outgoing calls
no test coverage detected