mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
28 lines
415 B
Go
28 lines
415 B
Go
package options
|
|
|
|
type SecretString struct {
|
|
s *string
|
|
}
|
|
|
|
func NewSecretString(s string) SecretString {
|
|
return SecretString{s: &s}
|
|
}
|
|
|
|
func (s SecretString) GoString() string {
|
|
return `"` + s.String() + `"`
|
|
}
|
|
|
|
func (s SecretString) String() string {
|
|
if s.s == nil || len(*s.s) == 0 {
|
|
return ``
|
|
}
|
|
return `**redacted**`
|
|
}
|
|
|
|
func (s *SecretString) Unwrap() string {
|
|
if s.s == nil {
|
|
return ""
|
|
}
|
|
return *s.s
|
|
}
|