mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
reuse sha256 in config GetSettings (#16188)
This commit is contained in:
parent
ebe395788b
commit
8edc2faaa9
@ -506,14 +506,13 @@ func (r *Config) GetSettings() madmin.OpenIDSettings {
|
||||
if !r.Enabled {
|
||||
return res
|
||||
}
|
||||
|
||||
h := sha256.New()
|
||||
for arn, provCfg := range r.arnProviderCfgsMap {
|
||||
hashedSecret := ""
|
||||
{
|
||||
h := sha256.New()
|
||||
h.Reset()
|
||||
h.Write([]byte(provCfg.ClientSecret))
|
||||
bs := h.Sum(nil)
|
||||
hashedSecret = base64.RawURLEncoding.EncodeToString(bs)
|
||||
hashedSecret = base64.RawURLEncoding.EncodeToString(h.Sum(nil))
|
||||
}
|
||||
if arn != DummyRoleARN {
|
||||
if res.Roles == nil {
|
||||
|
Loading…
Reference in New Issue
Block a user