go_sshkeys/kdf/consts.go

10 lines
124 B
Go
Raw Normal View History

2022-03-05 19:22:40 -05:00
package kdf
var (
// kdfNames is a collection of valid KDF name strings.
2022-03-07 03:42:09 -05:00
kdfNames = []string{
2022-03-05 19:22:40 -05:00
"none",
"bcrypt",
}
)