Class RespondentDataCryptographyModel
Model used in cryptography operations
public class RespondentDataCryptographyModel
- Inheritance
-
RespondentDataCryptographyModel
- Inherited Members
Properties
Data
The data dictionary that will be encrypted/decrypted.
[JsonProperty("Data", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public IDictionary<string, string> Data { get; set; }
Property Value
IV
The initialization vector used in cryptography operations. It must be a valid random or
pseudorandom value.
When used in the cryptography operation, it must be converted to Base64 byte[]
[JsonProperty("IV", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string IV { get; set; }