reactredux/webapi/CryptoProvider/AesKey.cs

17 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CryptoProvider {
public interface IAesKey {
public string? IV { get; set; }
public string? Key { get; set; }
}
public class AesKey : IAesKey {
public string? IV { get; set; }
public string? Key { get; set; }
}
}