(b *cryptobyte.Builder)
| 16 | type marshalingFunction func(b *cryptobyte.Builder) error |
| 17 | |
| 18 | func (f marshalingFunction) Marshal(b *cryptobyte.Builder) error { |
| 19 | return f(b) |
| 20 | } |
| 21 | |
| 22 | // addBytesWithLength appends a sequence of bytes to the cryptobyte.Builder. If |
| 23 | // the length of the sequence is not the value specified, it produces an error. |