- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for UpdateUserSecretKey (0.07 seconds)
-
cmd/iam-store.go
} if err := cache.updateUserWithClaims(accessKey, u); err != nil { return updatedAt, err } return u.UpdatedAt, nil } // UpdateUserSecretKey - sets user secret key to storage. func (store *IAMStoreSys) UpdateUserSecretKey(ctx context.Context, accessKey, secretKey string) error { cache := store.lock() defer store.unlock() cache.updatedAt = time.Now()
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 87.1K bytes - Click Count (0) -
cmd/iam.go
if !auth.IsAccessKeyValid(accessKey) { return auth.ErrInvalidAccessKeyLength } if !auth.IsSecretKeyValid(secretKey) { return auth.ErrInvalidSecretKeyLength } return sys.store.UpdateUserSecretKey(ctx, accessKey, secretKey) } // purgeExpiredCredentialsForExternalSSO - validates if local credentials are still valid // by checking remote IDP if the relevant users are still active and present.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed Oct 15 17:00:45 GMT 2025 - 76.5K bytes - Click Count (0)