MCPcopy Create free account
hub / github.com/auth0/auth0-cli / StoreClientSecret

Function StoreClientSecret

internal/keyring/keyring.go:23–25  ·  view source on GitHub ↗

StoreClientSecret stores a tenant's client secret in the system keyring.

(tenant, value string)

Source from the content-addressed store, hash-verified

21
22// StoreClientSecret stores a tenant's client secret in the system keyring.
23func StoreClientSecret(tenant, value string) error {
24 return keyring.Set(secretClientSecret, tenant, value)
25}
26
27// GetClientSecret retrieves a tenant's client secret from the system keyring.
28func GetClientSecret(tenant string) (string, error) {

Callers 2

RunLoginAsMachineSecretFunction · 0.92
TestSecretsFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestSecretsFunction · 0.68