+ 2
How do I hide/encode an user input in a console application? (C#)
2 ответов
+ 4
I've been working on a login process for my Entity project. You can use this if it's any help? Note: Will only work in Visual Studio, not code playground. If not let me know what you need.
using System.Security;
static void Main(string[] args)
{
Console.Write("--|> PASSWORD: ");
SecureString pass = new SecureString();
ConsoleKeyInfo key;
do
{
key = Console.ReadKey(true);
if (key.Key != ConsoleKey.Backspace)
{
pass.AppendChar(key.KeyChar);
Console.Write("*");
}
else
{
pass.RemoveAt(pass.Length - 1);
Console.Write("\b \b");
}
}
while (key.Key != ConsoleKey.Enter);
}
It basically swaps user input for *.
+ 1
Omg that's perfect and it works so well,
Thank you so much
Indeed I was looking for a code that worked on VS :D
PD: sorry my english and again, thank you