| 74 | } |
| 75 | |
| 76 | BERSequenceDecoder::BERSequenceDecoder(BufferedTransformation &inQueue) |
| 77 | : inQueue(inQueue) |
| 78 | { |
| 79 | byte b; |
| 80 | if (!inQueue.Get(b) || b != (SEQUENCE | CONSTRUCTED)) |
| 81 | BERDecodeError(); |
| 82 | |
| 83 | definiteLength = BERLengthDecode(inQueue, length); |
| 84 | } |
| 85 | |
| 86 | BERSequenceDecoder::~BERSequenceDecoder() |
| 87 | { |
nothing calls this directly
no test coverage detected