using Nethereum.Hex.HexConvertors.Extensions; using Newtonsoft.Json; namespace Nethereum.KeyStore.Model { public class CipherParams { public CipherParams() { } public CipherParams(byte[] iv) { Iv = iv.ToHex(); } [JsonProperty("iv")] public string Iv { get; set; } } }