Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JwtFilter (0.29 sec)

  1. pilot/pkg/security/authn/factory.go

    	InboundMTLSSettings(endpointPort uint32, node *model.Proxy, trustDomainAliases []string, modeOverride model.MutualTLSMode) MTLSSettings
    
    	// JwtFilter returns the JWT HTTP filter to enforce the underlying authentication policy.
    	// It may return nil, if no JWT validation is needed.
    	JwtFilter(useExtendedJwt, clearRouteCache bool) *hcm.HttpFilter
    
    	// AuthNFilter returns the (authn) HTTP filter to enforce the underlying authentication policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/plugin/authn/authentication.go

    		return nil
    	}
    	if b.proxy.SupportsEnvoyExtendedJwt() {
    		filter := b.applier.JwtFilter(true, b.proxy.Type != model.SidecarProxy)
    		if filter != nil {
    			return []*hcm.HttpFilter{filter}
    		}
    		return nil
    	}
    	res := []*hcm.HttpFilter{}
    	if filter := b.applier.JwtFilter(false, false); filter != nil {
    		res = append(res, filter)
    	}
    	forSidecar := b.proxy.Type == model.SidecarProxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top