Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for ocsp (0.28 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"username":          "username contains the name of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    					}
    					if len(c.VerifiedChains) == 0 {
    						return fmt.Errorf("client: got len(VerifiedChains) = 0, wanted non-zero")
    					}
    					if c.DidResume {
    						return nil
    						// The SCTs and OCSP Response are dropped on resumption.
    						// See http://golang.org/issue/39075.
    					}
    					if len(c.OCSPResponse) == 0 {
    						return fmt.Errorf("client: got len(OCSPResponse) = 0, wanted non-zero")
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    	}
    
    	if err = crl.CheckSignatureFrom(cert); err != nil {
    		t.Errorf("unexpected error: %s", err)
    	}
    
    	// This is an unrelated OCSP response, which will fail signature verification
    	// but shouldn't return an InsecureAlgorithmError, since SHA1 should be allowed
    	// for OCSP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/mxf",
    				"application/nasdata",
    				"application/news-checkgroups",
    				"application/news-groupinfo",
    				"application/news-transmission",
    				"application/nss",
    				"application/ocsp-request",
    				"application/ocsp-response",
    				"application/octet-stream",
    				"application/oda",
    				"application/oebps-package+xml",
    				"application/ogg",
    				"application/kate",
    				"application/onenote",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	didHRR           bool // whether a HelloRetryRequest was sent/received
    	cipherSuite      uint16
    	curveID          CurveID
    	ocspResponse     []byte   // stapled OCSP response
    	scts             [][]byte // signed certificate timestamps from server
    	peerCertificates []*x509.Certificate
    	// activeCertHandles contains the cache handles to certificates in
    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