html - How can i make it csv file password protected using javascript -
html table data exporting csv file ,it's happening want make csv file password protected using javascript .is possible ? or way same thing .thanks in advance
on surface csv file data exchange format, fields separated commas , each record goes on single line.
comma separated values standard
this specification wouldn’t deal password protection.
but can zip csv. require password before uncompressing.
in link called exec zip file password protection.
i not know details of intending accomplish, can scramble csv want , make unreadable without decryption, since isn't part of standard, getting file wouldn't know it. if control both encryption , decryption, don't need zip.
you use encryption library javascript aes encryption
Comments
Post a Comment