Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for Jwks (0.05 sec)

  1. internal/config/identity/openid/jwks.go

    package openid
    
    import (
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/elliptic"
    	"crypto/rsa"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"math/big"
    )
    
    // JWKS - https://tools.ietf.org/html/rfc7517
    type JWKS struct {
    	Keys []*JWKS `json:"keys,omitempty"`
    
    	Kty string `json:"kty"`
    	Use string `json:"use,omitempty"`
    	Kid string `json:"kid,omitempty"`
    	Alg string `json:"alg,omitempty"`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 02 23:02:35 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tests/common/jwt/jwks.json

    Yangmin Zhu <******@****.***> 1561584590 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 26 21:29:50 UTC 2019
    - 438 bytes
    - Viewed (0)
  3. security/tools/jwt/samples/jwks.json

    Diem Vu <******@****.***> 1532437713 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 24 13:08:33 UTC 2018
    - 438 bytes
    - Viewed (0)
  4. releasenotes/notes/jwks-cluster.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    releaseNotes:
      - |
        **Fixed** an issue where gateways cannot fetch JWKS from `jwksUri` in RequestAuthentication 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 10:45:06 UTC 2023
    - 296 bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/configmap-jwks.yaml

    {{- if .Values.pilot.jwksResolverExtraRootCA }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: pilot-jwks-extra-cacerts{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 557 bytes
    - Viewed (0)
  6. tests/integration/security/testdata/requestauthn/invalid-jwks.yaml.tmpl

    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      jwtRules:
      - issuer: "******@****.***"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 328 bytes
    - Viewed (0)
  7. tests/common/jwt/jwt_token.go

    	//    "group-1"
    	//  ],
    	//  "iat": 1562182722,
    	//  "iss": "******@****.***",
    	//  "sub": "sub-1"
    	// }
    	// Generated by: security/tools/jwt/samples/gen-jwt.py tests/common/jwt/key.pem -jwks=tests/common/jwt/jwks.json
    	// --expire=3153600000 --iss=******@****.*** --sub=sub-1 --listclaim groups "group-1"
    	// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. tests/integration/security/remote_jwks/remote_jwks_test.go

    			}{
    				{
    					name:       "remote-jwks-without-service-entry",
    					policyFile: "./testdata/requestauthn-no-se.yaml.tmpl",
    					customizeCall: func(t framework.TestContext, from echo.Instance, opts *echo.CallOptions) {
    						opts.HTTP.Path = "/valid-token-forward-remote-jwks"
    						opts.HTTP.Headers = headers.New().WithAuthz(jwt.TokenIssuer1).Build()
    						opts.Check = check.And(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. pkg/routes/openidmetadata.go

    			// Just include the OK, doesn't look like we include Internal Error in our openapi-spec.
    			Returns(http.StatusOK, "OK", ""))
    	c.Add(cfg)
    
    	// JWKS WebService
    	jwks := new(restful.WebService).
    		Produces(mimeJWKS)
    
    	jwks.Path(serviceaccount.JWKSPath).Route(
    		jwks.GET("").
    			To(fromStandard(s.serveKeys)).
    			Doc("get service account issuer OpenID JSON Web Key Set (contains public token verification keys)").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. pilot/pkg/security/authn/policy_applier_test.go

    							BypassCorsPreflight: true,
    						}),
    				},
    			},
    		},
    		{
    			name: "JWT policy with inline Jwks",
    			in: []*config.Config{
    				{
    					Spec: &v1beta1.RequestAuthentication{
    						JwtRules: []*v1beta1.JWTRule{
    							{
    								Issuer: "https://secret.foo.com",
    								Jwks:   "inline-jwks-data",
    							},
    						},
    					},
    				},
    			},
    			expected: &hcm.HttpFilter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
Back to top