Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SubjectTypes (0.3 sec)

  1. pkg/serviceaccount/openidmetadata.go

    	JWKSURI       string   `json:"jwks_uri"`                              // REQUIRED in OIDC; meaningful to relying parties.
    	ResponseTypes []string `json:"response_types_supported"`              // REQUIRED in OIDC
    	SubjectTypes  []string `json:"subject_types_supported"`               // REQUIRED in OIDC
    	SigningAlgs   []string `json:"id_token_signing_alg_values_supported"` // REQUIRED in OIDC
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  2. pkg/serviceaccount/openidmetadata_test.go

    	SubjectTypes  []string `json:"subject_types_supported"`
    }
    
    func TestServeConfiguration(t *testing.T) {
    	s, jwksURI := setupServer(t, exampleIssuer, defaultKeys)
    	defer s.Close()
    
    	want := Configuration{
    		Issuer:        exampleIssuer,
    		JWKSURI:       jwksURI,
    		ResponseTypes: []string{"id_token"},
    		SubjectTypes:  []string{"public"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 01:53:17 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top