SenseNet.ContentRepository.User.CheckPasswordMatch C# (CSharp) Method

CheckPasswordMatch() public static method

public static CheckPasswordMatch ( string passwordInClearText, string encodedPassword ) : bool
passwordInClearText string
encodedPassword string
return bool
		public static bool CheckPasswordMatch(string passwordInClearText, string encodedPassword)
		{
			return EncodePassword(passwordInClearText) == encodedPassword;
		}
		public static string EncodePassword(string passwordInClearText)