Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RawTBSCertificate (0.45 sec)

  1. src/crypto/x509/root_windows.go

    	for i, parent := range chain[1:] {
    		if parent.PublicKeyAlgorithm != ECDSA {
    			continue
    		}
    		if err := parent.CheckSignature(chain[i].SignatureAlgorithm,
    			chain[i].RawTBSCertificate, chain[i].Signature); err != nil {
    			return nil, err
    		}
    	}
    	return chain, nil
    }
    
    // systemVerify is like Verify, except that it uses CryptoAPI calls
    // to build certificate chains and verify them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/crypto/x509/parser.go

    	}
    
    	var tbs cryptobyte.String
    	// do the same trick again as above to extract the raw
    	// bytes for Certificate.RawTBSCertificate
    	if !input.ReadASN1Element(&tbs, cryptobyte_asn1.SEQUENCE) {
    		return nil, errors.New("x509: malformed tbs certificate")
    	}
    	cert.RawTBSCertificate = tbs
    	if !tbs.ReadASN1(&tbs, cryptobyte_asn1.SEQUENCE) {
    		return nil, errors.New("x509: malformed tbs certificate")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    	}
    	return
    }
    
    // A Certificate represents an X.509 certificate.
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"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},
    		{"Certificate.Subject", 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)
  5. api/go1.txt

    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
    pkg crypto/x509, type Certificate struct, SignatureAlgorithm SignatureAlgorithm
    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