Exemplo n.º 1
0
        /// <summary>
        /// Generate a Linux compatible MD5-encoded password based on the raw input. The output will be in form
        /// $1$salt$hash
        /// </summary>
        static public string Encrypt(string password)
        {
            StringBuilder salt = new StringBuilder();
            Random        rand = new Random();

            while (salt.Length < 8)
            {
                int index = (int)(rand.NextDouble() * ValidSaltCharacters.Length);
                salt.Append(ValidSaltCharacters.Substring(index, 1));
            }

            return(ApacheEncryption.Encrypt(password, salt.ToString()));
        }
Exemplo n.º 2
0
 /// <summary>
 /// Verifies that <paramref name="plainText"/> would result in <paramref name="hashedValue"/> if hashed based on
 /// the algorithm.
 /// </summary>
 static public bool VerifyPassword(string plainText, string hashedValue)
 {
     if (hashedValue.StartsWith("$1$"))
     {
         return(hashedValue.Equals(ApacheEncryption.Encrypt(plainText, hashedValue)));
     }
     else if (hashedValue.StartsWith("$apr1$"))
     {
         return(hashedValue.Equals(ApacheEncryption.ApacheEncrypt(plainText, hashedValue)));
     }
     else
     {
         throw new InvalidOperationException("Bad plain text input, does not conform to Apache.");
     }
 }
Exemplo n.º 3
0
 static public string ApacheEncrypt(string password, string salt)
 {
     return(ApacheEncryption.Encrypt(password, salt, "$apr1$"));
 }