Table of Contents

Class RespondentDataCryptographyModel

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

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

IDictionary<string, string>

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; }

Property Value

string