Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UpdateUserSecretKey (0.06 sec)

  1. 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()
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 87.1K bytes
    - Viewed (0)
  2. 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.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Oct 15 17:00:45 UTC 2025
    - 76.5K bytes
    - Viewed (0)
Back to top