guibranco/CrispyWaffle

View on GitHub
Src/CrispyWaffle.Configuration/SecureCredentialProvider.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace CrispyWaffle.Configuration
{
    /// <summary>
    /// Class SecureCredentialProvider.
    /// Implements the <see cref="CrispyWaffle.Configuration.ISecureCredentialProvider" />
    /// </summary>
    /// <seealso cref="CrispyWaffle.Configuration.ISecureCredentialProvider" />
    public class SecureCredentialProvider : ISecureCredentialProvider
    {
        /// <summary>
        /// Gets or sets the password hash.
        /// </summary>
        /// <value>The password hash.</value>
        public string PasswordHash { get; set; }

        /// <summary>
        /// Gets or sets the salt key.
        /// </summary>
        /// <value>The salt key.</value>
        public string SaltKey { get; set; }

        /// <summary>
        /// Gets or sets the initialization vector key.
        /// </summary>
        /// <value>The initialization vector key.</value>
        public string IVKey { get; set; }
    }
}