You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/auth/oidc/client_secret.go

28 lines
733 B

package oidc
import (
"encoding/json"
)
// ClientSecret equals an AuthMethod's client secret. This type provides a
// wrapper so the secret isn't inadvertently leaked into a log or error.
type ClientSecret string
// RedactedClientSecret is the redacted string or json for an oidc id_token.
const redactedClientSecret = "[REDACTED: OIDC client_secret]"
// String will redact the client_secret.
func (s ClientSecret) String() string {
return redactedClientSecret
}
// GoString will redact the client_secret.
func (s ClientSecret) GoString() string {
return redactedClientSecret
}
// MarshalJSON will redact the client_secret.
func (s ClientSecret) MarshalJSON() ([]byte, error) {
return json.Marshal(redactedClientSecret)
}