We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acbcbef commit d0a798fCopy full SHA for d0a798f
cryptobyte/asn1.go
@@ -234,7 +234,7 @@ func (b *Builder) AddASN1(tag asn1.Tag, f BuilderContinuation) {
234
// Identifiers with the low five bits set indicate high-tag-number format
235
// (two or more octets), which we don't support.
236
if tag&0x1f == 0x1f {
237
- b.err = fmt.Errorf("cryptobyte: high-tag number identifier octects not supported: 0x%x", tag)
+ b.err = fmt.Errorf("cryptobyte: high-tag number identifier octets not supported: 0x%x", tag)
238
return
239
}
240
b.AddUint8(uint8(tag))
0 commit comments