MCPcopy Create free account
hub / github.com/cli/cli / maskToken

Function maskToken

pkg/cmd/auth/status/status.go:341–348  ·  view source on GitHub ↗
(token string)

Source from the content-addressed store, hash-verified

339var knownTokenPrefixes = []string{"github_pat_", "ghp_", "gho_", "ghu_", "ghs_", "ghr_"}
340
341func maskToken(token string) string {
342 for _, prefix := range knownTokenPrefixes {
343 if strings.HasPrefix(token, prefix) {
344 return prefix + strings.Repeat("*", len(token)-len(prefix))
345 }
346 }
347 return strings.Repeat("*", len(token))
348}
349
350func displayScopes(scopes string) string {
351 if scopes == "" {

Callers 2

statusRunFunction · 0.85
TestMaskTokenFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestMaskTokenFunction · 0.68