Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for JTI (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    			info.Extra[NodeUIDKey] = []string{sa.NodeUID}
    		}
    	}
    
    	return info
    }
    
    // CredentialIDForJTI converts a given JTI string into a credential identifier for use in a
    // users 'extra' info.
    func CredentialIDForJTI(jti string) string {
    	if len(jti) == 0 {
    		return ""
    	}
    	return "JTI=" + jti
    }
    
    // IsServiceAccountToken returns true if the secret is a valid api token for the service account
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. pkg/registry/core/serviceaccount/storage/storage_test.go

    		},
    	)
    }
    
    func TestCreate_Token_SetsCredentialIDAuditAnnotation(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    
    	// Enable JTI feature
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.ServiceAccountTokenJTI, true)
    
    	ctx := context.Background()
    	// Create a test service account
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. docs/sts/wso2.md

    | exp        | _integer_      | The token expiration time.                                                                                                                                                              |
    | jti        | _string_       | Unique identifier for the JWT token.                                                                                                                                                    |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top