Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for crl (0.3 sec)

  1. src/crypto/x509/x509_test.go

    	if err != nil {
    		t.Fatalf("failed to parse certificate: %s", err)
    	}
    
    	want := []string{
    		"http://epscd.catcert.net/crl/ec-acc.crl",
    		"http://epscd2.catcert.net/crl/ec-acc.crl",
    	}
    	if got := cert.CRLDistributionPoints; !reflect.DeepEqual(got, want) {
    		t.Errorf("CRL distribution points = %#v, want #%v", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    			},
    		},
    		{
    			name: "mesh SDS enabled, tls mode ISTIO_MUTUAL, CRL specified",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com"},
    				Port: &networking.Port{
    					Protocol: string(protocol.HTTPS),
    				},
    				Tls: &networking.ServerTLSSettings{
    					Mode:  networking.ServerTLSSettings_ISTIO_MUTUAL,
    					CaCrl: "/custom/path/to/crl.pem",
    				},
    			},
    			result: &auth.DownstreamTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    			},
    			"requires a private key", "not-a-cipher-suite",
    		},
    		{
    			"crl specified for SIMPLE TLS",
    			&networking.ServerTLSSettings{
    				Mode:  networking.ServerTLSSettings_SIMPLE,
    				CaCrl: "crl",
    			},
    			"CRL is not supported with SIMPLE TLS", "",
    		},
    		{
    			"crl specified for CredentialName",
    			&networking.ServerTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    		}
    	}
    	if tls.CaCrl != "" {
    		if tls.CredentialName != "" {
    			v = AppendValidation(v, fmt.Errorf("CRL is not supported with credentialName. CRL has to be specified in the credential"))
    		}
    		if tls.Mode == networking.ServerTLSSettings_SIMPLE {
    			v = AppendValidation(v, fmt.Errorf("CRL is not supported with SIMPLE TLS"))
    		}
    	}
    	return
    }
    
    // ValidateDestinationRule checks proxy policies
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    typically request: \"key encipherment\", \"digital signature\", \"server auth\".\n\nValid values are:\n \"signing\", \"digital signature\", \"content commitment\",\n \"key encipherment\", \"key agreement\", \"data encipherment\",\n \"cert sign\", \"crl sign\", \"encipher only\", \"decipher only\", \"any\",\n \"server auth\", \"client auth\",\n \"code signing\", \"email protection\", \"s/mime\",\n \"ipsec end system\", \"ipsec tunnel\", \"ipsec user\",\n \"timestamping\", \"ocsp signing\", \"microsoft...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
Back to top