Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for ocsp (0.05 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/x509/pkix/pkix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package pkix contains shared, low level structures used for ASN.1 parsing
    // and serialization of X.509 certificates, CRL and OCSP.
    package pkix
    
    import (
    	"encoding/asn1"
    	"encoding/hex"
    	"fmt"
    	"math/big"
    	"time"
    )
    
    // AlgorithmIdentifier represents the ASN.1 structure of the same name. See RFC
    // 5280, section 4.1.1.2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. pkg/apis/certificates/types.go

    	UsageIPsecTunnel       KeyUsage = "ipsec tunnel"
    	UsageIPsecUser         KeyUsage = "ipsec user"
    	UsageTimestamping      KeyUsage = "timestamping"
    	UsageOCSPSigning       KeyUsage = "ocsp signing"
    	UsageMicrosoftSGC      KeyUsage = "microsoft sgc"
    	UsageNetscapeSGC       KeyUsage = "netscape sgc"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1/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;
    
      // username contains the name of the user that created the CertificateSigningRequest.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_messages.go

    			echOuterExts = append(echOuterExts, extensionStatusRequest)
    		} else {
    			exts.AddUint16(extensionStatusRequest)
    			exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
    				exts.AddUint8(1)  // status_type = ocsp
    				exts.AddUint16(0) // empty responder_id_list
    				exts.AddUint16(0) // empty request_extensions
    			})
    		}
    	}
    	if len(m.supportedCurves) > 0 {
    		// RFC 4492, sections 5.1.1 and RFC 8446, Section 4.2.7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top