ERASE PASSWORD

  • Thread starter Thread starter GiorgioITA
  • Start date Start date
G

GiorgioITA

Guest
In my code I need to temporary save a password required to access certain files, such as:

string password;

When I finished using it, I want to securely erase it; setting password = null or password = String.Empty makes it unavailable for my code, but the password remains somewhere in memory and I am concerned that a hacker might be able to get it.

Is there any way to positively erase that string?

Continue reading...
 
Back
Top