Skip to content

Instantly share code, notes, and snippets.

@JamesMenetrey
Last active April 14, 2019 20:03
Show Gist options
  • Save JamesMenetrey/27b5c2313a85725e80e8eec71004a379 to your computer and use it in GitHub Desktop.
Save JamesMenetrey/27b5c2313a85725e80e8eec71004a379 to your computer and use it in GitHub Desktop.
C# stackalloc using Span<T>; password not handled by the GC.
static void Main(string[] args)
{
// Allocate the buffer on the stack (therefore not managed by the GC)
Span<char> buffer = stackalloc char[20];
// Ask for the password
Console.Write("Type a password: ");
TypePassword(buffer, 0);
Console.WriteLine();
// Unsafe since transformed in string; real usage would avoid that
Console.WriteLine($"Your password: {buffer.ToString()}");
// Flush the buffer
Flush(buffer);
// Unsafe since transformed in string; real usage would avoid that
Console.WriteLine($"Flushed buffer: {buffer.ToString()}");
Console.Read();
}
/// <remarks>
/// Pray for tailrec optimization.
/// </remarks>
static Span<char> TypePassword(Span<char> buffer, int i)
{
if (i > buffer.Length) return buffer;
switch (Console.ReadKey(intercept: true))
{
// Displayable character
case var key when !char.IsControl(key.KeyChar):
buffer[i] = key.KeyChar;
return TypePassword(buffer, i + 1);
// Backspace
case var key when key.Key == ConsoleKey.Backspace && i > 0:
buffer[i] = (char)0;
return TypePassword(buffer, i - 1);
// Validation
case var key when key.Key == ConsoleKey.Enter:
return buffer;
default:
return TypePassword(buffer, i);
}
}
static void Flush<T>(Span<T> span) where T: new()
{
span.Fill(new T());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment