pdf-lite - v1.0.1
    Preparing search index...

    V1 security handler implementing 40-bit RC4 encryption. This is the original PDF encryption format (PDF 1.1).

    const handler = new PdfV1SecurityHandler({
    password: 'user123',
    ownerPassword: 'admin456'
    })

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    The encryption dictionary containing all encryption parameters.

    documentId?: PdfId

    Document identifier for key derivation.

    encryptMetadata: boolean

    Whether to encrypt document metadata.

    masterKey?: ByteArray

    Derived master encryption key.

    ownerKey?: ByteArray

    Computed owner key (O value).

    ownerPassword?: ByteArray

    Owner password for full access.

    password: ByteArray

    User password for authentication.

    permissions: number

    Numeric permission flags.

    userKey?: ByteArray

    Computed user key (U value).

    Methods