像表一样的加密文件

像表一样的加密文件

本文介绍了像表一样的加密文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想创建一个像表这样的加密文件,我可以存储数据,并在需要时从中读取数据。并且可以编辑文件。



例如我想创建一个用户文件,我保留userName和密码。我可以插入,更新,删除用户名和密码。当我登录我的应用程序然后从文件中检查userName和密码。

i want to create an encrypted file like table where i can stored data and read form it when need. And can edit the file.

For example i wants to create a user file where i keep userName and password. i can insert, update, delete the userName and password. when i login to my application then check userName and password form the file.

推荐答案


public static string Decrypt(string stringToDecrypt)
       {
           MemoryStream ms = null;
           byte[] inputByteArray = new byte[stringToDecrypt.Length + 1];
           try
           {
               byte[] key = { };
               string sEncryptionKey = "!#








public static string Encrypt(string stringToEncrypt)
        {
            MemoryStream ms = null;
            try
            {
                byte[] key = { };
                string sEncryptionKey = "!#


这篇关于像表一样的加密文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 05:03