vault/plugins/database/postgresql/passwordauthentication.go
Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* license: update headers to IBM Corp.
* `make proto`
* update offset because source file changed

Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
2025-10-21 15:20:20 -06:00

29 lines
945 B
Go

// Copyright IBM Corp. 2016, 2025
// SPDX-License-Identifier: BUSL-1.1
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
}