Deprecated: NewCredSshKey is a deprecated alias of NewCredentialSshKey.
(username string, publicKeyPath string, privateKeyPath string, passphrase string)
| 54 | |
| 55 | // Deprecated: NewCredSshKey is a deprecated alias of NewCredentialSshKey. |
| 56 | func NewCredSshKey(username string, publicKeyPath string, privateKeyPath string, passphrase string) (*Cred, error) { |
| 57 | return NewCredentialSSHKey(username, publicKeyPath, privateKeyPath, passphrase) |
| 58 | } |
| 59 | |
| 60 | // Deprecated: NewCredSshKeyFromMemory is a deprecated alias of NewCredentialSSHKeyFromMemory. |
| 61 | func NewCredSshKeyFromMemory(username string, publicKey string, privateKey string, passphrase string) (*Cred, error) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…