Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for ocsp (0.06 sec)

  1. pilot/pkg/credentials/kube/secrets.go

    	TLSSecretCert = "tls.crt"
    	// The ID/name for the k8sKey in kubernetes tls secret.
    	TLSSecretKey = "tls.key"
    	// The ID/name for the certificate OCSP staple in kubernetes tls secret
    	TLSSecretOcspStaple = "tls.ocsp-staple"
    	// The ID/name for the CA certificate in kubernetes tls secret
    	TLSSecretCaCert = "ca.crt"
    	// The ID/name for the CRL in kubernetes tls secret.
    	TLSSecretCrl = "ca.crl"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. 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,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 05 22:45:34 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  3. src/crypto/x509/root_darwin.go

    	// set them via SecTrustSetSignedCertificateTimestamps, since Apple will
    	// always enforce its SCT requirements, and there are still _some_ people
    	// using TLS or OCSP for that.
    
    	if ret, err := macOS.SecTrustEvaluateWithError(trustObj); err != nil {
    		switch ret {
    		case macOS.ErrSecCertificateExpired:
    			return nil, CertificateInvalidError{c, Expired, err.Error()}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	//  "server auth",
    	//  "client auth",
    	//  "code signing",
    	//  "email protection",
    	//  "s/mime",
    	//  "ipsec end system",
    	//  "ipsec tunnel",
    	//  "ipsec user",
    	//  "timestamping",
    	//  "ocsp signing",
    	//  "microsoft sgc",
    	//  "netscape sgc"
    	// +listType=atomic
    	Usages []KeyUsage `json:"usages,omitempty" protobuf:"bytes,5,opt,name=usages"`
    
    	// Information about the requesting user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  5. pilot/pkg/credentials/kube/secrets_test.go

    		{
    			name:            "tls",
    			namespace:       "default",
    			cert:            "tls-cert",
    			key:             "tls-key",
    			staple:          "tls-ocsp-staple",
    			expectedCAError: "found secret, but didn't have expected keys cacert or ca.crt; found: tls.crt, tls.key, tls.ocsp-staple, and 0 more...",
    		},
    		{
    			name:      "tls-mtls",
    			namespace: "default",
    			cert:      "tls-mtls-cert",
    			key:       "tls-mtls-key",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    			}
    			if !bytes.Equal(cs.OCSPResponse, ocsp) {
    				t.Errorf("Got OCSPs %x, expected %x", cs.OCSPResponse, ocsp)
    			}
    			// Only TLS 1.3 supports OCSP and SCTs on client certs.
    			if v == VersionTLS13 {
    				if len(ss.SignedCertificateTimestamps) != 2 {
    					t.Errorf("Got %d client SCTs, expected %d", len(ss.SignedCertificateTimestamps), 2)
    				}
    				if !bytes.Equal(ss.OCSPResponse, ocsp) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    	"username":          "Information about the requesting user. See user.Info interface for details.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1/types.go

    	//  "server auth", "client auth",
    	//  "code signing", "email protection", "s/mime",
    	//  "ipsec end system", "ipsec tunnel", "ipsec user",
    	//  "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"
    	// +listType=atomic
    	Usages []KeyUsage `json:"usages,omitempty" protobuf:"bytes,5,opt,name=usages"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      //  "server auth",
      //  "client auth",
      //  "code signing",
      //  "email protection",
      //  "s/mime",
      //  "ipsec end system",
      //  "ipsec tunnel",
      //  "ipsec user",
      //  "timestamping",
      //  "ocsp signing",
      //  "microsoft sgc",
      //  "netscape sgc"
      // +listType=atomic
      repeated string usages = 5;
    
      // Information about the requesting user.
      // See user.Info interface for details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      //  "server auth",
      //  "client auth",
      //  "code signing",
      //  "email protection",
      //  "s/mime",
      //  "ipsec end system",
      //  "ipsec tunnel",
      //  "ipsec user",
      //  "timestamping",
      //  "ocsp signing",
      //  "microsoft sgc",
      //  "netscape sgc"
      // +listType=atomic
      repeated string usages = 5;
    
      // Information about the requesting user.
      // See user.Info interface for details.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top