C# - Securely storing a password locally

前端 未结 6 1305
终归单人心
终归单人心 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:29

    The standard method for storing a password in a configuration file is to use a strong hash algorithm. Read the answer at How to store passwords in Winforms application? and maybe the wiki article at https://en.wikipedia.org/wiki/Cryptographic_hash_function

提交回复
热议问题