Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CRL (0.03 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. 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)
Back to top