C# - Securely storing a password locally

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

    Is relatively easy using ProtectSection() and UnprotectSection() methods from SectionInformation class. See this article:

    http://www.davidgiard.com/2012/06/05/EncryptingAndDecryptingApplicationConfigSections.aspx

    http://msdn.microsoft.com/en-us/library/system.configuration.sectioninformation.protectsection.aspx

提交回复
热议问题