UNPKG

@syncfusion/ej2-pdf

Version:

Feature-rich JavaScript PDF library with built-in support for loading and manipulating PDF document.

33 lines (32 loc) 750 B
/** * Base class representing cipher parameter metadata (e.g., whether key is private). * * @private */ export declare abstract class _PdfCipherParameter { /** * Indicates whether the underlying key material is private. * * @private * @type {boolean} */ _isPrivate: boolean; constructor(isPrivate: boolean); } export declare class _PdfRonCipherParameter extends _PdfCipherParameter { /** * RSA modulus bytes. * * @private * @type {Uint8Array} */ _modulus: Uint8Array; /** * RSA public exponent bytes. * * @private * @type {Uint8Array} */ _exponent: Uint8Array; constructor(isPrivate: boolean, modulus: Uint8Array, exponent: Uint8Array); }