Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseECPrivateKey (0.36 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		key, err := x509.ParseECPrivateKey(b)
    		if err != nil {
    			return nil, err
    		}
    		return key.Public(), nil
    	})
    }
    
    func loadECDSAPrivKey(t *testing.T, filepath string, alg jose.SignatureAlgorithm) *jose.JSONWebKey {
    	return loadKey(t, filepath, alg, func(b []byte) (interface{}, error) {
    		return x509.ParseECPrivateKey(b)
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    	hexKey        string
    	errorContains string
    }{
    	{hexKey: hexPKCS1TestPKCS8Key, errorContains: "use ParsePKCS8PrivateKey instead"},
    	{hexKey: hexPKCS1TestECKey, errorContains: "use ParseECPrivateKey instead"},
    }
    
    func TestPKCS1MismatchKeyFormat(t *testing.T) {
    	for i, test := range pkcs1MismatchKeyTests {
    		derBytes, _ := hex.DecodeString(test.hexKey)
    		_, err := ParsePKCS1PrivateKey(derBytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top