UNPKG

asn1-ts

Version:

ASN.1 encoding and decoding, including BER, CER, and DER.

5 lines (4 loc) 225 B
import type { INTEGER } from "../macros.mjs"; import { Buffer } from "node:buffer"; export declare function bufferToInteger(input: Buffer | Uint8Array): INTEGER; export declare function integerToBuffer(int: INTEGER): Buffer;