Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for IsCompound (0.32 sec)

  1. src/encoding/asn1/marshal.go

    		}
    
    		t := new(taggedEncoder)
    
    		t.tag = bytesEncoder(appendTagAndLength(t.scratch[:0], tagAndLength{rv.Class, rv.Tag, len(rv.Bytes), rv.IsCompound}))
    		t.body = bytesEncoder(rv.Bytes)
    
    		return t, nil
    	}
    
    	matchAny, tag, isCompound, ok := getUniversalType(v.Type())
    	if !ok || matchAny {
    		return nil, StructuralError{fmt.Sprintf("unknown Go type: %v", v.Type())}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. src/encoding/asn1/common.go

    const (
    	ClassUniversal       = 0
    	ClassApplication     = 1
    	ClassContextSpecific = 2
    	ClassPrivate         = 3
    )
    
    type tagAndLength struct {
    	class, tag, length int
    	isCompound         bool
    }
    
    // ASN.1 has IMPLICIT and EXPLICIT tags, which can be translated as "instead
    // of" and "in addition to". When not specified, every primitive type has a
    // default tag in the UNIVERSAL class.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  3. src/encoding/asn1/asn1.go

    		bmpString = bmpString[2:]
    	}
    
    	return string(utf16.Decode(s)), nil
    }
    
    // A RawValue represents an undecoded ASN.1 object.
    type RawValue struct {
    	Class, Tag int
    	IsCompound bool
    	Bytes      []byte
    	FullBytes  []byte // includes the tag and length
    }
    
    // RawContent is used to signal that the undecoded, DER data needs to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  4. security/pkg/pki/util/san.go

    		return nil, err
    	} else if len(rest) != 0 {
    		return nil, fmt.Errorf("the SAN extension is incorrectly encoded")
    	}
    
    	// Check the rawValue is a sequence.
    	if !sequence.IsCompound || sequence.Tag != asn1.TagSequence || sequence.Class != asn1.ClassUniversal {
    		return nil, fmt.Errorf("the SAN extension is incorrectly encoded")
    	}
    
    	ids := []Identity{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  5. src/encoding/asn1/asn1_test.go

    	type untaggedRawValue struct {
    		A RawValue
    	}
    	const isCompound = 0x20
    	const tag = 5
    
    	tests := []struct {
    		shouldMatch bool
    		derBytes    []byte
    	}{
    		{false, []byte{0x30, 3, TagInteger, 1, 1}},
    		{true, []byte{0x30, 3, (ClassContextSpecific << 6) | tag, 1, 1}},
    		{true, []byte{0x30, 3, (ClassContextSpecific << 6) | tag | isCompound, 1, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 18:24:36 UTC 2023
    - 43.6K bytes
    - Viewed (0)
  6. src/encoding/asn1/marshal_test.go

    	{genericStringTest{"test&"}, "30070c057465737426"},
    	{rawContentsStruct{nil, 64}, "3003020140"},
    	{rawContentsStruct{[]byte{0x30, 3, 1, 2, 3}, 64}, "3003010203"},
    	{RawValue{Tag: 1, Class: 2, IsCompound: false, Bytes: []byte{1, 2, 3}}, "8103010203"},
    	{testSET([]int{10}), "310302010a"},
    	{omitEmptyTest{[]string{}}, "3000"},
    	{omitEmptyTest{[]string{"1"}}, "30053003130131"},
    	{"Σ", "0c02cea3"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 10K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ObjectIdentifier", Type, 0},
    		{"RawContent", Type, 0},
    		{"RawValue", Type, 0},
    		{"RawValue.Bytes", Field, 0},
    		{"RawValue.Class", Field, 0},
    		{"RawValue.FullBytes", Field, 0},
    		{"RawValue.IsCompound", Field, 0},
    		{"RawValue.Tag", Field, 0},
    		{"StructuralError", Type, 0},
    		{"StructuralError.Msg", Field, 0},
    		{"SyntaxError", Type, 0},
    		{"SyntaxError.Msg", Field, 0},
    		{"TagBMPString", Const, 14},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    var name=binding.name;storage[name]=literals;...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  9. api/go1.txt

    pkg encoding/asn1, type RawValue struct, Bytes []uint8
    pkg encoding/asn1, type RawValue struct, Class int
    pkg encoding/asn1, type RawValue struct, FullBytes []uint8
    pkg encoding/asn1, type RawValue struct, IsCompound bool
    pkg encoding/asn1, type RawValue struct, Tag int
    pkg encoding/asn1, type StructuralError struct
    pkg encoding/asn1, type StructuralError struct, Msg string
    pkg encoding/asn1, type SyntaxError struct
    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