websitepanel/WebsitePanel/Sources/WebsitePanel.WebDavPortal/Config/Entities/Rfc2898CryptographyParameters.cs
2014-12-03 11:43:26 +03:00

16 lines
No EOL
587 B
C#

namespace WebsitePanel.WebDavPortal.Config.Entities
{
public class Rfc2898CryptographyParameters : AbstractConfigCollection
{
public string PasswordHash { get; private set; }
public string SaltKey { get; private set; }
public string VIKey { get; private set; }
public Rfc2898CryptographyParameters()
{
PasswordHash = ConfigSection.Rfc2898Cryptography.PasswordHash;
SaltKey = ConfigSection.Rfc2898Cryptography.SaltKey;
VIKey = ConfigSection.Rfc2898Cryptography.VIKey;
}
}
}