C# - Securely storing a password locally

前端 未结 6 1290
终归单人心
终归单人心 2020-12-17 00:58

I\'m creating a C# application that will lock out functionality (key combinations, windows task bar, etc.) in a Kiosk-style environment. One of the requirements is that some

6条回答
  •  情深已故
    2020-12-17 01:30

    You can store a hash of your key and a password somewhere, for example in some local file. When person input key and password, you get hashes for this values and compare it with hashes in your file.

提交回复
热议问题