Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for RawSubjectPublicKeyInfo (0.35 sec)

  1. cmd/kubeadm/app/util/pubkeypin/pubkeypin.go

    // hex encoded string (suitable for passing to Set.Allow).
    func Hash(certificate *x509.Certificate) string {
    	spkiHash := sha256.Sum256(certificate.RawSubjectPublicKeyInfo)
    	return formatSHA256 + ":" + strings.ToLower(hex.EncodeToString(spkiHash[:]))
    }
    
    // allowSHA256 validates a "sha256" format hash and adds a canonical version of it into the Set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    type Certificate struct {
    	Raw                     []byte // Complete ASN.1 DER content (certificate, signature algorithm and signature).
    	RawTBSCertificate       []byte // Certificate part of raw ASN.1 DER content.
    	RawSubjectPublicKeyInfo []byte // DER encoded SubjectPublicKeyInfo.
    	RawSubject              []byte // DER encoded Subject
    	RawIssuer               []byte // DER encoded Issuer
    
    	Signature          []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. src/crypto/x509/parser.go

    	}
    	cert.Subject.FillFromRDNSequence(subjectRDNs)
    
    	var spki cryptobyte.String
    	if !tbs.ReadASN1Element(&spki, cryptobyte_asn1.SEQUENCE) {
    		return nil, errors.New("x509: malformed spki")
    	}
    	cert.RawSubjectPublicKeyInfo = spki
    	if !spki.ReadASN1(&spki, cryptobyte_asn1.SEQUENCE) {
    		return nil, errors.New("x509: malformed spki")
    	}
    	var pkAISeq cryptobyte.String
    	if !spki.ReadASN1(&pkAISeq, cryptobyte_asn1.SEQUENCE) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    		TLSEnabled: globalIsTLS,
    		Certs:      []madmin.TLSCert{},
    	}
    
    	if globalIsTLS {
    		for _, c := range globalPublicCerts {
    			check := xxh3.Hash(c.RawIssuer)
    			check ^= xxh3.Hash(c.RawSubjectPublicKeyInfo)
    			// We XOR, so order doesn't matter.
    			for _, v := range c.DNSNames {
    				check ^= xxh3.HashString(v)
    			}
    			for _, v := range c.EmailAddresses {
    				check ^= xxh3.HashString(v)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. api/go1.3.txt

    pkg crypto/x509, type CertificateRequest struct, Raw []uint8
    pkg crypto/x509, type CertificateRequest struct, RawSubject []uint8
    pkg crypto/x509, type CertificateRequest struct, RawSubjectPublicKeyInfo []uint8
    pkg crypto/x509, type CertificateRequest struct, RawTBSCertificateRequest []uint8
    pkg crypto/x509, type CertificateRequest struct, Signature []uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Certificate.PublicKeyAlgorithm", Field, 0},
    		{"Certificate.Raw", Field, 0},
    		{"Certificate.RawIssuer", Field, 0},
    		{"Certificate.RawSubject", Field, 0},
    		{"Certificate.RawSubjectPublicKeyInfo", Field, 0},
    		{"Certificate.RawTBSCertificate", Field, 0},
    		{"Certificate.SerialNumber", Field, 0},
    		{"Certificate.Signature", Field, 0},
    		{"Certificate.SignatureAlgorithm", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg crypto/x509, type Certificate struct, Raw []uint8
    pkg crypto/x509, type Certificate struct, RawIssuer []uint8
    pkg crypto/x509, type Certificate struct, RawSubject []uint8
    pkg crypto/x509, type Certificate struct, RawSubjectPublicKeyInfo []uint8
    pkg crypto/x509, type Certificate struct, RawTBSCertificate []uint8
    pkg crypto/x509, type Certificate struct, SerialNumber *big.Int
    pkg crypto/x509, type Certificate struct, Signature []uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top