ASN.1 DER parsing state
| 74 | |
| 75 | /** ASN.1 DER parsing state */ |
| 76 | interface ASN1State { |
| 77 | readonly data: Uint8Array |
| 78 | pos: number |
| 79 | } |
| 80 | |
| 81 | /** Creates ASN.1 parsing state */ |
| 82 | const createASN1State = (data: Uint8Array): ASN1State => ({ data, pos: 0 }) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…