create and download CSV file using javascript and add password protection on file open after download

657 Views Asked by At

I want to add password protection on CSV file which I have just created by javascript Blob

new Blob([csvFile], {
  type: 'text/csv;charset=utf-8;'
})

It should ask for password when user try to open that file.

How can I do that using client side javascript?

Thanks

0

There are 0 best solutions below