/** * Parses a single PEM block to buffer. * In fact just strips begin/end tags and parses the rest as Base64 */ export declare function parsePemContents(pem: string): Uint8Array; interface Asn1Object { type: number; lengthSize: number; length: number; children?: Asn1Object[]; value?: Uint8Array; } /** * Parses ASN.1 data to an object */ export declare function parseAsn1(data: Uint8Array): Asn1Object; export {};