Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for XfccAuthenticator (0.23 sec)

  1. security/pkg/server/ca/authenticate/xfcc_authenticator.go

    )
    
    const (
    	XfccAuthenticatorType = "XfccAuthenticator"
    )
    
    // XfccAuthenticator extracts identities from Xfcc header.
    type XfccAuthenticator struct{}
    
    var _ security.Authenticator = &XfccAuthenticator{}
    
    func (xff XfccAuthenticator) AuthenticatorType() string {
    	return XfccAuthenticatorType
    }
    
    // Authenticate extracts identities from Xfcc Header.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. releasenotes/notes/41171.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue: []
    releaseNotes:
    - |
      **Updated** the default value for TRUSTED_GATEWAY_CIDR.
    
      Previously this was empty which implicitly caused the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 26 16:41:35 UTC 2022
    - 256 bytes
    - Viewed (0)
  3. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    					"hello.west.example.com",
    					"hello.east.example.com",
    					"hello",
    					"spiffe://mesh.example.com/ns/otherns/sa/othersa",
    				},
    			},
    			useHttpRequest: true,
    		},
    	}
    
    	auth := &XfccAuthenticator{}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			var authContext security.AuthContext
    			if tt.useHttpRequest {
    				httpRequest := http.Request{
    					RemoteAddr: "127.0.0.1:2301",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top