1
0
mirror of https://github.com/ssh-vault/ssh-vault.git synced 2025-04-19 07:42:18 +03:00
ssh-vault/get_password.go
2021-05-22 12:50:47 +02:00

10 lines
233 B
Go

// For platforms without managed ssh private key passwords,
// fallback to prompting the user.
package sshvault
// GetPassword calls GetPasswordPrompt
func (v *vault) GetPassword() ([]byte, error) {
return v.GetPasswordPrompt()
}