Enum AnonymizerApproach
The class AnonymizerApproach defines how an affected path is handled during anonymization.
Namespace: BO4E.Extensions.Encryption
Assembly: BO4E-dotnet.Extensions.Encryption.dll
Syntax
public enum AnonymizerApproach : int
Fields
Name | Description |
---|---|
DECRYPT | Reverts the encryption. ENCRYPT |
DELETE | Simply delete the data by replacing them with null values in the JSON representation. In most cases this results in invalid BO4E object as well as not well formed EDIFCAT messages. |
ENCRYPT | Asymmetrically encrypt strings or COM objects. |
HASH | Hashes the original data using SHA256. |
KEEP | Do not do anything with the data. This is similar to not setting the options connected to the path at all but more explicit. |