AweSamNet.JsonObfuscator
Makes use of JSON.Net custom Contract Resolver to serialize/deserialize objects to/from obfuscated JSON.
License
See license details here.
Usage
//serialize an object to obfuscated JSON
string json = myObject.JsonObfuscate();
//deserialize obfuscated to proper object
MyClass deserialized = json.JsonDeobfuscate<MyClass>();
NuGet
https://www.nuget.org/packages/AweSamNet.JsonObfuscator
To Install
PM> Install-Package AweSamNet.JsonObfuscator