()
| 59 | ) |
| 60 | |
| 61 | func (k KeyType) String() string { |
| 62 | switch k { |
| 63 | case ECDSA: |
| 64 | return "ecdsa" |
| 65 | case ED25519: |
| 66 | return "ed25519" |
| 67 | default: |
| 68 | return "unknown" |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | // DefaultSSHKeyFileNames are the file names ssh key pairs that opkssh may |
| 73 | // write to in ~/.ssh/ during login. These are used by both login and logout |
no outgoing calls