UNPKG

@peculiar/asn1-rsa

Version:

ASN.1 schema of `RSA Cryptography Specifications Version 2.2` (RFC8017)

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>); }