Class ObfuscatorMapping
A simple container for the original value of an obfuscated entry as well as the obfuscated value. This is used for reversing an obfuscated document to its original value.
Inheritance
System.Object
ObfuscatorMapping
Namespace: Cuemon.Security
Assembly: Cuemon.Security.dll
Syntax
public sealed class ObfuscatorMapping
Constructors
| Improve this DocObfuscatorMapping(String, String)
Initializes a new instance of the ObfuscatorMapping class.
Declaration
public ObfuscatorMapping(string obfuscated, string original)
Parameters
Type | Name | Description |
---|---|---|
System.String | obfuscated | The obfuscated value of |
System.String | original | The original value of |
Properties
| Improve this DocCount
Gets the total representation count of this mapping.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The total representation count of this mapping. |
Obfuscated
Gets the obfuscated value of Original.
Declaration
public string Obfuscated { get; }
Property Value
Type | Description |
---|---|
System.String | The obfuscated value of Original. |
Original
Gets the original value of Obfuscated.
Declaration
public string Original { get; }
Property Value
Type | Description |
---|---|
System.String | The original value of Obfuscated. |
Methods
| Improve this DocIncrementCount()
Increments the representation count of this mapping.
Declaration
public void IncrementCount()