wisski-cloud-distillery/internal/passwordx/charset.go
Tom Wiesing 2edd0f2fe2
internal/config/template: Cleanup
This commit cleans up the internal/config/template to remove code no
longer used because of the new configuration.
2023-02-26 10:46:10 +01:00

13 lines
565 B
Go

package passwordx
import "github.com/tkw1536/pkglib/password"
// Safe is a charset used for generating passwords that can be safely passed without having to be escaped.
const Safe = password.DefaultCharSet
// Printable is a charset that contains all printable ascii characters
const Printable = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"
// Identifier is a charset to be used to generate unique identifiers.
// These are typically used for snapshots and names.
const Identifier = password.DefaultCharSet