Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 311 for jwtm (0.07 sec)

  1. releasenotes/notes/no-1p-jwt.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
      - |
        **Removed** the `first-party-jwt` legacy option for `values.global.jwtPolicy`. Support for the more secure `third-party-jwt`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 02:55:50 UTC 2024
    - 288 bytes
    - Viewed (0)
  2. tests/integration/security/testdata/requestauthn/global-jwt.yaml.tmpl

    metadata:
      name: "default"
    spec:
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: authz-ingress
    spec:
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/security/oauth2-jwt.md

    ⏎ī¸ 🗓ī¸, 🤝 🔜 🕛 & 👩‍đŸ’ģ 🔜 đŸšĢ ✔ & 🔜 ✔ī¸ 🛑 🔄 🤚 🆕 🤝. & đŸšĨ 👩‍đŸ’ģ (⚖ī¸ đŸĨ‰ đŸĨŗ) 🔄 🔀 🤝 🔀 👔, 👆 🔜 đŸ’Ē 🔎 âšĢī¸, ↩ī¸ đŸ’ŗ 🔜 đŸšĢ 🏏.
    
    đŸšĨ 👆 💚 🤾 ⏎ī¸ đŸĨ™ 🤝 &amp; 👀 ❔ đŸ‘Ģ 👷, ✅ <a href="https://jwt.io/" class="external-link" target="_blank">https://jwt.io</a>.
    
    ## ❎ `python-jose`
    
    đŸ‘Ĩ đŸ’Ē ❎ `python-jose` 🏗 &amp; ✔ đŸĨ™ 🤝 🐍:
    
    <div class="termy">
    
    ```console
    $ pip install "python-jose[cryptography]"
    
    ---> 100%
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 21:21:35 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. releasenotes/notes/jwt-from-cookies.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 47847
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 18:37:25 UTC 2023
    - 140 bytes
    - Viewed (0)
  5. security/pkg/server/ca/authenticate/kubeauth/kube_jwt.go

    	if err != nil {
    		return nil, fmt.Errorf("failed to validate the JWT from cluster %q: %v", clusterID, err)
    	}
    	if id.PodServiceAccount == "" {
    		return nil, fmt.Errorf("failed to parse the JWT; service account required")
    	}
    	if id.PodNamespace == "" {
    		return nil, fmt.Errorf("failed to parse the JWT; namespace required")
    	}
    	return &security.Caller{
    		AuthSource:     security.AuthSourceIDToken,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. security/tools/jwt/samples/demo.jwt

    Diem Vu <******@****.***> 1532437713 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 24 13:08:33 UTC 2018
    - 599 bytes
    - Viewed (0)
  7. pkg/kubeapiserver/options/authentication_test.go

    							"kind":"AuthenticationConfiguration",
    							"jwt1":[{"issuer":{"url": "https://test-issuer"}}]}`)
    			},
    			expectErr: `unknown field "jwt1"`,
    		},
    		{
    			name: "v1alpha1 - json",
    			file: func() string {
    				return writeTempFile(t, `{
    							"apiVersion":"apiserver.config.k8s.io/v1alpha1",
    							"kind":"AuthenticationConfiguration",
    							"jwt":[{"issuer":{"url": "https://test-issuer"}}]}`)
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  8. pkg/security/security.go

    	// identity.
    	WorkloadKeyCertResourceName = "default"
    
    	// GCE is Credential fetcher type of Google plugin
    	GCE = "GoogleComputeEngine"
    
    	// JWT is a Credential fetcher type that reads from a JWT token file
    	JWT = "JWT"
    
    	// Mock is Credential fetcher type of mock plugin
    	Mock = "Mock" // testing only
    
    	// GoogleCAProvider uses the Google CA for workload certificate signing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. security/tools/jwt/samples/groups-scope.jwt

    lei-tang <******@****.***> 1537395504 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 19 22:18:24 UTC 2018
    - 659 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	// other authenticators may run before or after the JWT authenticators.
    	// The specific position of JWT authenticators in relation to other
    	// authenticators is neither defined nor stable across releases.  Since
    	// each JWT authenticator must have a unique issuer URL, at most one
    	// JWT authenticator will attempt to cryptographically validate the token.
    	//
    	// The minimum valid JWT payload must contain the following claims:
    	// {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top