aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/asn1
diff options
context:
space:
mode:
authorThan McIntosh <thanm@google.com>2019-11-08 18:53:35 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2019-11-08 18:55:44 +0000
commitb2b0992b05a37b474d77c5056787780fda254fda (patch)
tree2f5d2d0bb850c9eb5174bbf10efb4a2d0638ef56 /src/encoding/asn1
parentcb47edc0c404aa6944976b27406bd927f8836f07 (diff)
downloadgo-b2b0992b05a37b474d77c5056787780fda254fda.tar.gz
go-b2b0992b05a37b474d77c5056787780fda254fda.zip
Revert "encoding/asn1: fix unmarshalling SEQUENCE OF SET"
This reverts CL 160819 (commit 4692343cf401a5bbcc29) Reason for revert: causing lots of failures on master Change-Id: I96fd39ae80fe350ba8b3aa310443d41daec38093 Reviewed-on: https://go-review.googlesource.com/c/go/+/206146 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/encoding/asn1')
-rw-r--r--src/encoding/asn1/asn1_test.go19
-rw-r--r--src/encoding/asn1/common.go3
2 files changed, 0 insertions, 22 deletions
diff --git a/src/encoding/asn1/asn1_test.go b/src/encoding/asn1/asn1_test.go
index 5cadf31510..d5649bff9f 100644
--- a/src/encoding/asn1/asn1_test.go
+++ b/src/encoding/asn1/asn1_test.go
@@ -1129,22 +1129,3 @@ func TestBMPString(t *testing.T) {
}
}
}
-
-func TestSequenceOfSet(t *testing.T) {
- type someSetSET struct {
- A int `asn1:"tag:0"`
- }
-
- type someStruct struct {
- B int `asn1:"tag:0"`
- C []someSetSET `asn1:"tag:1"`
- }
-
- der := []byte{0x30, 0x0F, 0x80, 0x01, 0x01, 0xA1, 0x0A, 0x31, 0x03, 0x80, 0x01, 0x01, 0x31, 0x03, 0x80, 0x01, 0x02}
-
- var b someStruct
- if _, err := Unmarshal(der, &b); err != nil {
- t.Errorf("Unmarshal failed: %v", err)
- }
-
-}
diff --git a/src/encoding/asn1/common.go b/src/encoding/asn1/common.go
index b0ca1c8aab..e2aa8bd9c5 100644
--- a/src/encoding/asn1/common.go
+++ b/src/encoding/asn1/common.go
@@ -167,9 +167,6 @@ func getUniversalType(t reflect.Type) (matchAny bool, tagNumber int, isCompound,
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return false, TagInteger, false, true
case reflect.Struct:
- if strings.HasSuffix(t.Name(), "SET") {
- return false, TagSet, true, true
- }
return false, TagSequence, true, true
case reflect.Slice:
if t.Elem().Kind() == reflect.Uint8 {