Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for RelativeDistinguishedNameSET (0.62 sec)

  1. src/crypto/x509/pkix/pkix.go

    	oidProvince           = []int{2, 5, 4, 8}
    	oidStreetAddress      = []int{2, 5, 4, 9}
    	oidPostalCode         = []int{2, 5, 4, 17}
    )
    
    // appendRDNs appends a relativeDistinguishedNameSET to the given RDNSequence
    // and returns the new value. The relativeDistinguishedNameSET contains an
    // attributeTypeAndValue for each of the given values. See RFC 5280, A.1, and
    // search for AttributeTypeAndValue.
    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. src/encoding/asn1/asn1_test.go

    		Issuer: RDNSequence{
    			RelativeDistinguishedNameSET{AttributeTypeAndValue{Type: ObjectIdentifier{2, 5, 4, 6}, Value: "XX"}},
    			RelativeDistinguishedNameSET{AttributeTypeAndValue{Type: ObjectIdentifier{2, 5, 4, 8}, Value: "Some-State"}},
    			RelativeDistinguishedNameSET{AttributeTypeAndValue{Type: ObjectIdentifier{2, 5, 4, 7}, Value: "City"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 18:24:36 UTC 2023
    - 43.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. api/go1.txt

    pkg crypto/x509/pkix, type Name struct, SerialNumber string
    pkg crypto/x509/pkix, type Name struct, StreetAddress []string
    pkg crypto/x509/pkix, type RDNSequence []RelativeDistinguishedNameSET
    pkg crypto/x509/pkix, type RelativeDistinguishedNameSET []AttributeTypeAndValue
    pkg crypto/x509/pkix, type RevokedCertificate struct
    pkg crypto/x509/pkix, type RevokedCertificate struct, Extensions []Extension
    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