Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for authFailMsgs (0.1 sec)

  1. pkg/security/security.go

    }
    
    // authenticationManager orchestrates all authenticators to perform authentication.
    type authenticationManager struct {
    	Authenticators []Authenticator
    	// authFailMsgs contains list of messages that authenticator wants to record - mainly used for logging.
    	authFailMsgs []string
    }
    
    // Authenticate loops through all the configured Authenticators and returns if one of the authenticator succeeds.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/debug.go

    		authFailMsgs := make([]string, 0)
    		var ids []string
    		authRequest := security.AuthContext{Request: req}
    		for _, authn := range s.Authenticators {
    			u, err := authn.Authenticate(authRequest)
    			// If one authenticator passes, return
    			if u != nil && u.Identities != nil && err == nil {
    				ids = u.Identities
    				break
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top