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