UNPKG

@peculiar/asn1-rsa

Version:
14 lines (13 loc) 284 B
/** * ```asn1 * RSAPublicKey ::= SEQUENCE { * modulus INTEGER, -- n * publicExponent INTEGER -- e * } * ``` */ export declare class RSAPublicKey { modulus: ArrayBuffer; publicExponent: ArrayBuffer; constructor(params?: Partial<RSAPublicKey>); }