Walter.Cypher.Newtonsoft.Json 2024.4.4.2102

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Walter.Cypher.Newtonsoft.Json --version 2024.4.4.2102
NuGet\Install-Package Walter.Cypher.Newtonsoft.Json -Version 2024.4.4.2102
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Walter.Cypher.Newtonsoft.Json" Version="2024.4.4.2102" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Walter.Cypher.Newtonsoft.Json --version 2024.4.4.2102
#r "nuget: Walter.Cypher.Newtonsoft.Json, 2024.4.4.2102"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Walter.Cypher.Newtonsoft.Json as a Cake Addin
#addin nuget:?package=Walter.Cypher.Newtonsoft.Json&version=2024.4.4.2102

// Install Walter.Cypher.Newtonsoft.Json as a Cake Tool
#tool nuget:?package=Walter.Cypher.Newtonsoft.Json&version=2024.4.4.2102

WALTER

Introducing the WALTER Framework: Workable Algorithms for Location-aware Transmission, Encryption Response. Designed for modern developers, WALTER is a groundbreaking suite of NuGet packages crafted for excellence in .NET Standard 2.0, 2.1, Core 3.1, and .NET 6, 7, 8, as well as C++ environments. Emphasizing 100% AoT support and reflection-free operations, this framework is the epitome of performance and stability.

Whether you're tackling networking, encryption, or secure communication, WALTER offers unparalleled efficiency and precision in processing, making it an essential tool for developers who prioritize speed and memory management in their applications.

About the Walter.Cypher.Newtonsoft.Json Nuget Package

The Walter.Cypher.Newtonsoft.Json NuGet package provides a set of custom converters designed to enhance the security and privacy of your .NET applications by protecting sensitive data, especially useful in adhering to GDPR requirements. These converters can be easily integrated with the Newtonsoft.Json serialization and deserialization process, obfuscating sensitive information such as IP addresses, strings, dates, and numbers.

You can visit the static html help file at https://walter_cypher_newtonsoft_json.asp-waf.com as well as visit our Github saples at https://github.com/vesnx/Walter.Cypher.Newtonsoft.Json

Available Converters

  • GDPRCollectionOfStringConverter: Protects GDPR sensitive string collections, ideal for personal data like email lists.
  • GDPRIPAddressConverter: Obfuscates IP addresses to ensure privacy and compliance.
  • GDPRIPAddressListConverter: Safeguards lists of IP addresses, useful for configuration data or logging.
  • GDPRObfuscatedDateTimeConverter: Obfuscates dates, suitable for sensitive date information like birthdates or issue dates.
  • GDPRObfuscatedStringConverter: General purpose obfuscation for single strings, applicable to names, credit card numbers, etc.
  • GDPRObfuscatedIntConverter: Protects sensitive integer values, such as credit card CCVs.

Getting Started

To use this package, first install it via NuGet

Install-Package Walter.Cypher.Newtonsoft.Json

Use Case: Secure User Profile Serialization

This example demonstrates configuring System.Newtonsoft.Json to use the provided GDPR converters for both serialization and deserialization processes, ensuring that sensitive data is adequately protected according to GDPR guidelines.

You can then use these converters in a class or record, the bellow sample uses a combination of property names and converters to remove any inferable information from the Json string

    using Newtonsoft.Json;

    [JsonObject( MemberSerialization.OptIn)]
    record ProfileData
    {

        [JsonConstructor]
        internal ProfileData(List<IPAddress> a, string b, IPAddress c, int d)
        {
            AddressRange = a;
            SecretText = b;
            SingleAddress = c;
            CCV = d;

            //use Walter NuGet package to inverse inject ILogger
            //if no logger injected a default target will be used
            //depending the OS different targets are used, in windows
            //this is the Application event log
            Inverse.GetLogger("ProfileData")?.LogInformation("Json constructor called");
        }


        [JsonProperty("a")]
        [JsonConverter(typeof(GDPRIPAddressListConverter))]
        public List<IPAddress> AddressRange { get; }

        [JsonProperty("b")]
        [JsonConverter(typeof(GDPRObfuscatedStringConverter))]
        public string SecretText { get; }

        [JsonProperty("c")]
        [JsonConverter(typeof(GDPRIPAddressConverter))]
        public IPAddress SingleAddress { get; }

        [JsonProperty("d")]
        [JsonConverter(typeof(GDPRObfuscatedIntConverter))]
        public int CCV { get; }


    }

Optionally you can use dependency injection to integrate the Walter framework and use a shared secret password for the json encryption

   //secure the json using a protected password
   using var service = new ServiceCollection()
                           .AddLogging(option =>
                           {
                               //configure your logging as you would normally do
                               option.AddConsole();
                               option.SetMinimumLevel(LogLevel.Information);
                           })
                           //set the application password for json encryption
                           .UseSymmetricEncryption("May$ecr!tPa$$w0rd")                                    
                           .BuildServiceProvider();

   service.AddLoggingForWalter();//enable logging for the Walter framework classes

Serializing and Deserializing Securely

No specific configuration is need as we have defined the converter attributes on the properties.

        //set the options you need. in this sample we us a internal constructor
        JsonSerializerSettings _options = new JsonSerializerSettings()
        {
           ConstructorHandling = ConstructorHandling.AllowNonPublicDefaultConstructor
        };

           /*
           save to json and store or send to a insecure location the profile to disk. 
           note that data in transit can be read even if TLS secured using proxy or man in the middle. 
            */
           var profile = new UserProfile() { 
               Email = "My@email.com", 
               Name = "Jo Coder", 
               DateOfBirth = new DateTime(2001, 7, 16), 
               Devices=[IPAddress.Parse("192.168.1.1"),IPAddress.Parse("192.168.1.14"), IPAddress.Loopback]
           };

           var json= JsonConvert.SerializeObject(profile, _options);
           var directory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "MySupperApp");
           var fileName = Path.Combine(directory, "Data1.json");
           if (!Directory.Exists(directory))
           {
               Directory.CreateDirectory(directory);
           }

           //use inversion of control and generate a ILogger without dependency injection
           Inverse.GetLogger("MyConsoleApp")?.LogInformation("Cyphered json:\n{json}", json);


           await File.WriteAllTextAsync(fileName, json).ConfigureAwait(false);

Reading and Validating Data

Read the encrypted JSON from storage or after transmission, and deserialize it back into the UserProfile class, automatically decrypting and validating the data.

var cypheredJson = await File.ReadAllTextAsync("path_to_encrypted_json").ConfigureAwait(false);

//use the string extension from the Walter NuGet package to try and serialize the object
if (cypheredJson.IsValidJson<UserProfile>(_options,out var user))
{
   // Use the deserialized and decrypted `user` object
}

A working copy for use in a console application

The following is a working example of how you could use this in a console application


internal record UserProfile
{
    [JsonProperty("a")]
    [JsonConverter(typeof(GDPRObfuscatedStringConverter))]
    public required string Name { get; set; }

    [JsonProperty("b")]
    [JsonConverter(typeof(GDPRObfuscatedStringConverter))]
    public required string Email { get; set; }

    [JsonProperty("c")]
    [JsonConverter(typeof(GDPRObfuscatedDateTimeConverter))]
    public DateTime DateOfBirth { get; set; }

    [JsonProperty("d")]
    [JsonConverter(typeof(GDPRIPAddressListConverter))]
    public List<IPAddress> Devices { get; set; } = [];
}


 //secure the json using a protected password
using var service = new ServiceCollection()
                        .AddLogging(option =>
                        {
                            //configure your logging as you would normally do
                            option.AddConsole();
                            option.SetMinimumLevel(LogLevel.Information);
                        })
                        .UseSymmetricEncryption("May$ecr!tPa$$w0rd")
                        .BuildServiceProvider();

service.AddLoggingForWalter();//enable logging for the Walter framework classes


JsonSerializerSettings options = new JsonSerializerSettings()
{
    ConstructorHandling = ConstructorHandling.AllowNonPublicDefaultConstructor
};



//... rest of your code 

/*
save to json and store or send to a insecure location the profile to disk. 
Data in transit can be read even if TLS secured using proxy or man in the middle. 

 */
var profile = new UserProfile()
{
    Email = "My@email.com",
    Name = "Jo Coder",
    DateOfBirth = new DateTime(2001, 7, 16),
    Devices = [IPAddress.Parse("192.168.1.1"), IPAddress.Parse("192.168.1.14"), IPAddress.Loopback]
};

var json = JsonConvert.SerializeObject(profile, options);
var fileName = Path.GetTempFileName();

//use inversion of control and generate a ILogger without dependency injection
Inverse.GetLogger("MyConsoleApp")?.LogInformation("Cyphered json:\n{json}", json);


await File.WriteAllTextAsync(fileName, json).ConfigureAwait(false);

//... rest of your code 


/*
 Read the json back in to a class using this simple extension method
 */
var cypheredJson = await File.ReadAllTextAsync(fileName).ConfigureAwait(false);

//use string extension method from Walter NuGet package to generate json from a string
if (cypheredJson.IsValidJson<UserProfile>(options, out UserProfile? user))
{
    //... user is not null and holds decrypted values as the console will show
    Inverse.GetLogger("MyConsoleApp")?.LogInformation("Profile:\n{profile}", user.ToString());
}

if (File.Exists(fileName))
{

    File.Delete(fileName);
}

Encrypted UserProfile JSON Representation

In the example provided earlier, we showcased the serialization of a UserProfile object into a JSON format using advanced encryption techniques. This approach ensures that sensitive information within the UserProfile is securely obfuscated, requiring SHA-256 (or stronger) decryption capabilities for access. The JSON output is fully encrypted, making it a robust solution for protecting personal data, especially when adhering to GDPR standards or when data security is paramount.

Below is an example of how the UserProfile data appears after encryption and serialization into JSON. Note that each field are represented by a key (e.g., "a", "b", "c", "d"), and their values are encrypted strings. This encryption not only protects the data during transit or storage but also ensures that any identifiable information is not directly exposed in the serialized format.

 {"a":"MyXKKzy8oKLeS1at6f5r7Ew1ZhL/9XpQFbQih6qC6fs=","b":"/XmXqpoYWyh9P/dimhCI46rAjCYQLdGdDJEoJLB9nnk=","c":"/LMLvcDRsS/WyuPw6yvFy67+jLsGsFWH07IxfFk1A7sKlQmgtZZQQF7E9743wxa2","d":["3CSNib1uly38gqAa15P+bRpl2aLG4HKf8D29OUEr3SI=","GSnPjkfS8zkSgmfOVT680dXf+fOWZR4pehyPOB0OnuM=","ryhts2Fn9jC0FUCfyRNVMp6ChNpa3t3jzojxpXLt0/o="]}
  
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

  • .NETStandard 2.1

  • net6.0

  • net7.0

  • net8.0

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2024.4.4.2102 74 4/4/2024
2024.3.26.1111 70 3/26/2024
2024.3.19.2310 88 3/19/2024
2024.3.12.1022 75 3/12/2024
2024.3.7.836 86 3/7/2024
2024.3.6.1645 85 3/6/2024
2024.3.3.842 86 3/3/2024
2024.3.3.750 87 3/3/2024
2024.3.1.1143 100 3/1/2024

2 April 2024
- Update to 8.0.3