Can I encrypt my JSON data?

2019-01-13 18:28发布

I'm developing a JQuery web app that will be executed locally from a DVD. The app will read all the contents of a JSON file.

Is there a good way to encrypt or obfuscate the JSON content so that only the app can read it?

4条回答
劳资没心,怎么记你
2楼-- · 2019-01-13 18:44

How about this: https://github.com/HazAT/jCryption ? It uses RSA for the key exchange and AES for the encryption.

查看更多
仙女界的扛把子
3楼-- · 2019-01-13 18:55

If all you want is to prevent them from copying and pasting into something else, you could store it in BSON instead of JSON. http://bsonspec.org/#/specification

Now that only OBFUSCATES it, and will not prevent a knowledgeable person from using it if they want to.

You could also encrypt it, but you still have a similar issue as you would be storing the decrypt key inside the javascript that loads the encrypted Json.

Anyone that really wants your data is going to be able to get it. Most browser have javascript debuggers that will let you extract, or view the data at runtime.

So it mostly comes down to how much effort you want to put into making your data difficult to get at. A significantly motivated person with get at your data no matter what you do.

查看更多
再贱就再见
4楼-- · 2019-01-13 19:00

If you're only able to use JavaScript (no script-engine, like php), this library may be useful: http://code.google.com/p/crypto-js/

查看更多
兄弟一词,经得起流年.
5楼-- · 2019-01-13 19:01

I'm not sure which languages are supported by your platform but look at Silencio library which you can use to remove or hash nodes from JSON file. You can decide which nodes should be transformed (you may want to obfuscate only some such as password) and what change should be applied (clear the content, hash or custom)

查看更多
登录 后发表回答