I need to operate on encrypted files in a local sandbox. This means I want to limit local access to the key and unencrypted file. I want a script to ping a webserver to securely pull the key in a JS environment, use this key to unencrypt files, operate on them, and send information to the webserver without the local user having access to any outputs or intermediates. Is it possible to locally sandbox in a submitted script so that it runs locally but what it is operating on is completely unaccessible to the local machine after submission? (only accepts inputs - outputs, intermediates in memory unaccessible)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
No, that is similar to performing a DRM scheme without controlling the runtime environment. Maybe you can lock other scripts out (hard enough) but certainly not the userthat controls the browser. Best you can do is obfuscating the values... |
|||||||||||
|