Home | History | Annotate | Download | only in asn1

Lines Matching defs:Encode

25 	// Encode encodes this element by writing Len() bytes to dst.
26 Encode(dst []byte)
35 func (c byteEncoder) Encode(dst []byte) {
45 func (b bytesEncoder) Encode(dst []byte) {
57 func (s stringEncoder) Encode(dst []byte) {
73 func (m multiEncoder) Encode(dst []byte) {
76 e.Encode(dst[off:])
93 func (t *taggedEncoder) Encode(dst []byte) {
94 t.tag.Encode(dst)
95 t.body.Encode(dst[t.tag.Len():])
116 func (i int64Encoder) Encode(dst []byte) {
237 func (b bitStringEncoder) Encode(dst []byte) {
254 func (oid oidEncoder) Encode(dst []byte) {
687 e.Encode(b)