Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for CRL (0.04 sec)

  1. tests/integration/security/sds_ingress/util/test_certs.go

    w21DvYLg8JkRxIjsm0VE2tfgv4+tJp3zHmjSK+kXmK1l3ZoupGb+eThJfybswwF0
    rzf+hI4uJC+CUDYwIBBmKHAZyrFwK1Sep5jZ8YJEwDKfYEDohOdnvTonZSt/bIgJ
    O5aKK4vEyXNrqkMf
    -----END X509 CRL-----`
    	DummyCaCrlA = `-----BEGIN X509 CRL-----
    MIIC2DCBwQIBATANBgkqhkiG9w0BAQsFADBUMQswCQYDVQQGEwJVUzEPMA0GA1UE
    CAwGRGVuaWFsMQ4wDAYDVQQHDAVFdGhlcjEMMAoGA1UECgwDRGlzMRYwFAYDVQQD
    DA0qLmV4YW1wbGUuY29tFw0yMzA3MDUxNzQ0MDZaFw0zMzA3MDIxNzQ0MDZaMBQw
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  2. 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)
  3. pilot/pkg/credentials/model.go

    type CertInfo struct {
    	// The certificate chain
    	Cert []byte
    	// The private key
    	Key []byte
    	// The oscp staple
    	Staple []byte
    	// Certificate Revocation List information
    	CRL []byte
    }
    
    type Controller interface {
    	GetCertInfo(name, namespace string) (certInfo *CertInfo, err error)
    	GetCaCert(name, namespace string) (certInfo *CertInfo, err error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. pilot/pkg/xds/sds.go

    		TrustedCa: &core.DataSource{
    			Specifier: &core.DataSource_InlineBytes{
    				InlineBytes: certInfo.Cert,
    			},
    		},
    	}
    	if certInfo.CRL != nil {
    		validationContext.Crl = &core.DataSource{
    			Specifier: &core.DataSource_InlineBytes{
    				InlineBytes: certInfo.CRL,
    			},
    		}
    	}
    	res := protoconv.MessageToAny(&envoytls.Secret{
    		Name: name,
    		Type: &envoytls.Secret_ValidationContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_tls_test.go

    		{
    			name: "tls mode SIMPLE, with certs specified in tls, with crl",
    			opts: &buildClusterOpts{
    				mutable: newTestCluster(),
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode:            networking.ClientTLSSettings_SIMPLE,
    				CaCertificates:  rootCert,
    				SubjectAltNames: []string{"SAN"},
    				Sni:             "some-sni.com",
    				CaCrl:           "path/to/crl",
    			},
    			result: expectedResult{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. pilot/pkg/security/authn/utils/utils.go

    		TlsMinimumProtocolVersion: minTLSVersion,
    		TlsMaximumProtocolVersion: tls.TlsParameters_TLSv1_3,
    	}
    	authn_model.ApplyToCommonTLSContext(ctx.CommonTlsContext, node, []string{}, /*subjectAltNames*/
    		"", /*crl*/
    		trustDomainAliases, ctx.RequireClientCertificate.Value)
    
    	// Compliance for downstream mesh mTLS.
    	authn_model.EnforceCompliance(ctx.CommonTlsContext)
    	return ctx
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. pkg/controller/certificates/authority/policies_test.go

    			expectedKeyUsage:    x509.KeyUsageCertSign | x509.KeyUsageEncipherOnly,
    			expectedExtKeyUsage: nil,
    			expectErr:           false,
    		},
    		{
    			usages:              []capi.KeyUsage{"ocsp signing", "crl sign", "s/mime", "content commitment"},
    			expectedKeyUsage:    x509.KeyUsageCRLSign | x509.KeyUsageContentCommitment,
    			expectedExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageEmailProtection, x509.ExtKeyUsageOCSPSigning},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 05 22:45:34 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	//
    	// Valid values are:
    	//  "signing",
    	//  "digital signature",
    	//  "content commitment",
    	//  "key encipherment",
    	//  "key agreement",
    	//  "data encipherment",
    	//  "cert sign",
    	//  "crl sign",
    	//  "encipher only",
    	//  "decipher only",
    	//  "any",
    	//  "server auth",
    	//  "client auth",
    	//  "code signing",
    	//  "email protection",
    	//  "s/mime",
    	//  "ipsec end system",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    ction-4.2.1.3\n\thttps://tools.ietf.org/html/rfc5280#section-4.2.1.12\n\nValid values are:\n \"signing\",\n \"digital signature\",\n \"content commitment\",\n \"key encipherment\",\n \"key agreement\",\n \"data encipherment\",\n \"cert sign\",\n \"crl sign\",\n \"encipher only\",\n \"decipher only\",\n \"any\",\n \"server auth\",\n \"client auth\",\n \"code signing\",\n \"email protection\",\n \"s/mime\",\n \"ipsec end system\",\n \"ipsec tunnel\",\n \"ipsec user\",\n \"timestamping\",\n \"ocsp signing\",\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      //
      // Valid values are:
      //  "signing",
      //  "digital signature",
      //  "content commitment",
      //  "key encipherment",
      //  "key agreement",
      //  "data encipherment",
      //  "cert sign",
      //  "crl sign",
      //  "encipher only",
      //  "decipher only",
      //  "any",
      //  "server auth",
      //  "client auth",
      //  "code signing",
      //  "email protection",
      //  "s/mime",
      //  "ipsec end system",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top