Best practices for encrypting and decrypting passwords? (C#/.NET)

前端 未结 9 2193
时光取名叫无心
时光取名叫无心 2021-02-12 12:29

I need to store and encrypt a password in a (preferably text) file, that I later need to be able to decrypt. The password is for another service that I use, and needs to be sent

9条回答
  •  误落风尘
    2021-02-12 12:58

    One of the most important thing is the permissions on the file. Even if the content is encrypted you need to make sure that only the processes that need access to the file can read it.

提交回复
热议问题