mirror of https://github.com/duggerd/KFDtool.git
16 lines
335 B
C#
16 lines
335 B
C#
|
namespace KFDtool.Container
|
|||
|
{
|
|||
|
public class KeyDerivation
|
|||
|
{
|
|||
|
public string DerivationAlgorithm { get; set; }
|
|||
|
|
|||
|
public string HashAlgorithm { get; set; }
|
|||
|
|
|||
|
public byte[] Salt { get; set; }
|
|||
|
|
|||
|
public int IterationCount { get; set; }
|
|||
|
|
|||
|
public int KeyLength { get; set; }
|
|||
|
}
|
|||
|
}
|