StoreClientSecret stores a tenant's client secret in the system keyring.
(tenant, value string)
| 21 | |
| 22 | // StoreClientSecret stores a tenant's client secret in the system keyring. |
| 23 | func 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. |
| 28 | func GetClientSecret(tenant string) (string, error) { |
no outgoing calls