(*encoded_pieces)
| 46 | |
| 47 | |
| 48 | def encode_sequence(*encoded_pieces): |
| 49 | total_len = sum([len(p) for p in encoded_pieces]) |
| 50 | return b'\x30' + encode_length(total_len) + b''.join(encoded_pieces) |
| 51 | |
| 52 | |
| 53 | def encode_number(n): |
nothing calls this directly
no test coverage detected
searching dependent graphs…