VAULT-13614 Support SCRAM-SHA-256 encrypted passwords for PostgreSQL (#19616)

This commit is contained in:
Raymond Ho
2023-03-21 12:12:53 -07:00
committed by GitHub
parent 3926057a4f
commit ba963a8c65
11 changed files with 307 additions and 15 deletions

View File

@@ -0,0 +1,25 @@
package postgresql
import "fmt"
// passwordAuthentication determines whether to send passwords in plaintext (password) or hashed (scram-sha-256).
type passwordAuthentication string
var (
// passwordAuthenticationPassword is the default. If set, passwords will be sent to PostgreSQL in plain text.
passwordAuthenticationPassword passwordAuthentication = "password"
passwordAuthenticationSCRAMSHA256 passwordAuthentication = "scram-sha-256"
)
var passwordAuthentications = map[passwordAuthentication]struct{}{
passwordAuthenticationSCRAMSHA256: {},
passwordAuthenticationPassword: {},
}
func parsePasswordAuthentication(s string) (passwordAuthentication, error) {
if _, ok := passwordAuthentications[passwordAuthentication(s)]; !ok {
return "", fmt.Errorf("'%s' is not a valid password authentication type", s)
}
return passwordAuthentication(s), nil
}