| 62 | |
| 63 | const std::vector<uint8_t> ASN_BIT_SIZES{15, 16, 17, 18, 19, 20, 21, 22, 23, 24}; |
| 64 | uint32_t DecodeASN(std::vector<bool>::const_iterator& bitpos, const std::vector<bool>::const_iterator& endpos) |
| 65 | { |
| 66 | return DecodeBits(bitpos, endpos, 1, ASN_BIT_SIZES); |
| 67 | } |
| 68 | |
| 69 | |
| 70 | const std::vector<uint8_t> MATCH_BIT_SIZES{1, 2, 3, 4, 5, 6, 7, 8}; |
no test coverage detected