加密.ini文件

问题描述 投票:1回答:1

我如何加密.ini文件并在加密时从应用程序中读取数据?我用它可以阅读

public string ReadString(string Section, string Key)
        {
            return this.ReadString(Section, Key, "", 400);
        }
c# encryption ini
1个回答
0
投票

在这里你可以使用它来加密任何文本或文件https://www.codeproject.com/articles/769741/csharp-aes-bits-encryption-library-with-salt

© www.soinside.com 2019 - 2024. All rights reserved.