Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RelativeDistinguishedNameSET (0.22 sec)

  1. src/crypto/x509/x509_test.go

    		want string
    	}{
    		{
    			seq: pkix.RDNSequence{
    				pkix.RelativeDistinguishedNameSET{
    					pkix.AttributeTypeAndValue{Type: oidCountry, Value: "US"},
    				},
    				pkix.RelativeDistinguishedNameSET{
    					pkix.AttributeTypeAndValue{Type: oidOrganization, Value: "Widget Inc."},
    				},
    				pkix.RelativeDistinguishedNameSET{
    					pkix.AttributeTypeAndValue{Type: oidOrganizationalUnit, Value: "Sales"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. src/crypto/x509/parser.go

    	if !raw.ReadASN1(&raw, cryptobyte_asn1.SEQUENCE) {
    		return nil, errors.New("x509: invalid RDNSequence")
    	}
    
    	var rdnSeq pkix.RDNSequence
    	for !raw.Empty() {
    		var rdnSet pkix.RelativeDistinguishedNameSET
    		var set cryptobyte.String
    		if !raw.ReadASN1(&set, cryptobyte_asn1.SET) {
    			return nil, errors.New("x509: invalid RDNSequence")
    		}
    		for !set.Empty() {
    			var atav cryptobyte.String
    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/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Name.PostalCode", Field, 0},
    		{"Name.Province", Field, 0},
    		{"Name.SerialNumber", Field, 0},
    		{"Name.StreetAddress", Field, 0},
    		{"RDNSequence", Type, 0},
    		{"RelativeDistinguishedNameSET", Type, 0},
    		{"RevokedCertificate", Type, 0},
    		{"RevokedCertificate.Extensions", Field, 0},
    		{"RevokedCertificate.RevocationTime", Field, 0},
    		{"RevokedCertificate.SerialNumber", 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)
Back to top