()
| 114 | return result; |
| 115 | } |
| 116 | getOctetString() { |
| 117 | if (this.getTag() != 0x04) |
| 118 | throw new Error("BER: not a octet string"); |
| 119 | return this.getChunk(this.getLength()); |
| 120 | } |
| 121 | getObjectIdentifier() { |
| 122 | if (this.getTag() !== 0x06) |
| 123 | throw new Error("BER: not an object identifier"); |