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

    Type Alias PdfStandardSecurityHandlerOptions

    PdfStandardSecurityHandlerOptions: PdfSecurityHandlerOptions & {
        documentId?: PdfId | string | ByteArray;
        ownerKey?: ByteArray;
        ownerPassword?: string | ByteArray;
        password?: string | ByteArray;
        userKey?: ByteArray;
    }

    Options for creating a standard security handler with password-based encryption.

    Type Declaration

    • OptionaldocumentId?: PdfId | string | ByteArray

      Document identifier for key derivation.

    • OptionalownerKey?: ByteArray

      Pre-computed owner key.

    • OptionalownerPassword?: string | ByteArray

      Owner password for full document access.

    • Optionalpassword?: string | ByteArray

      User password for opening the document.

    • OptionaluserKey?: ByteArray

      Pre-computed user key.