-
Hello! I have a single file TW5 with password encryption (Stanford JavaScript Crypto Library) looking to host it on a Webserver locally. Should I expect this encryption to work the same way with NodeJS? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @jgeromero the Node.js configuration is used to build encrypted single file wikis, but it doesn't support encryption for data on disk. The Node.js threat model is that the server is assumed to be secure, and we worry about data being tampered with in transit, which is where HTTPS (TLS) comes in. If you want to use the Node.js configuration on a machine in a secure way then you would probably be best off running it within an encrypted disk volume. |
Beta Was this translation helpful? Give feedback.
Hi @jgeromero the Node.js configuration is used to build encrypted single file wikis, but it doesn't support encryption for data on disk.
The Node.js threat model is that the server is assumed to be secure, and we worry about data being tampered with in transit, which is where HTTPS (TLS) comes in.
If you want to use the Node.js configuration on a machine in a secure way then you would probably be best off running it within an encrypted disk volume.