Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for RS3512 (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. internal/config/identity/openid/rsa-sha3_contrib.go

    	jwt.RegisterSigningMethod(SigningMethodRS3384.Alg(), func() jwt.SigningMethod {
    		return SigningMethodRS3384
    	})
    
    	// RS3512
    	SigningMethodRS3512 = &jwt.SigningMethodRSA{Name: "RS3512", Hash: crypto.SHA3_512}
    	jwt.RegisterSigningMethod(SigningMethodRS3512.Alg(), func() jwt.SigningMethod {
    		return SigningMethodRS3512
    	})
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri May 16 14:27:42 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  2. internal/config/identity/openid/jwt.go

    	jp := new(jwtgo.Parser)
    	jp.ValidMethods = []string{
    		"RS256", "RS384", "RS512",
    		"ES256", "ES384", "ES512",
    		"HS256", "HS384", "HS512",
    		"RS3256", "RS3384", "RS3512",
    		"ES3256", "ES3384", "ES3512",
    	}
    
    	keyFuncCallback := func(jwtToken *jwtgo.Token) (any, error) {
    		kid, ok := jwtToken.Header["kid"].(string)
    		if !ok {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 8.4K bytes
    - Click Count (0)
  3. internal/config/identity/openid/ecdsa-sha3_contrib.go

    	jwt.RegisterSigningMethod(SigningMethodES3384.Alg(), func() jwt.SigningMethod {
    		return SigningMethodES3384
    	})
    
    	// ES512
    	SigningMethodES3512 = &jwt.SigningMethodECDSA{Name: "ES3512", Hash: crypto.SHA3_512, KeySize: 66, CurveBits: 521}
    	jwt.RegisterSigningMethod(SigningMethodES3512.Alg(), func() jwt.SigningMethod {
    		return SigningMethodES3512
    	})
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri May 16 14:27:42 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  4. fuzzing/fuzzingserver-expected.txt

    "13.4.5 UNIMPLEMENTED"
    "13.4.6 UNIMPLEMENTED"
    "13.4.7 UNIMPLEMENTED"
    "13.4.8 UNIMPLEMENTED"
    "13.4.9 UNIMPLEMENTED"
    "13.5.1 UNIMPLEMENTED"
    "13.5.10 UNIMPLEMENTED"
    "13.5.11 UNIMPLEMENTED"
    "13.5.12 UNIMPLEMENTED"
    "13.5.13 UNIMPLEMENTED"
    "13.5.14 UNIMPLEMENTED"
    "13.5.15 UNIMPLEMENTED"
    "13.5.16 UNIMPLEMENTED"
    "13.5.17 UNIMPLEMENTED"
    "13.5.18 UNIMPLEMENTED"
    "13.5.2 UNIMPLEMENTED"
    "13.5.3 UNIMPLEMENTED"
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 26 02:01:32 GMT 2019
    - 6.7K bytes
    - Click Count (1)
  5. CHANGELOG/CHANGELOG-1.3.md

    * Create a new Deployment in kube-system for every version. ([#23512](https://github.com/kubernetes/kubernetes/pull/23512), [@Q-Lee](https://github.com/Q-Lee))
    * IngressTLS: allow secretName to be blank for SNI routing ([#23500](https://github.com/kubernetes/kubernetes/pull/23500), [@tam7t](https://github.com/tam7t))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Click Count (0)
Back to Top