Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IsCompound (0.2 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/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)
  3. 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)
  4. 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)
Back to top