You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
460 B

namespace Common.Model
{
public class EncryptionParameters
{
public string PassPhrase { get; set; }
public string SaltValue { get; set; }
public string HashAlgorithm { get; set; }
public int PasswordIterations { get; set; }
public string InitVector { get; set; }
public int KeySize { get; set; }
public string PlainText { get; set; }
public string CipherText { get; set; }
}
}