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

问题描述

private void button1_Click(object sender, EventArgs e)
        {

            byte[] cipherbytes= Encoding.ASCII.GetBytes(label6.Text);
            System.IO.MemoryStream ms1 = new System.IO.MemoryStream(cipherbytes);
            cipherbytes = ms1.ToArray();
            CryptoStream cs1 = new CryptoStream(ms1, desObj.CreateDecryptor(), CryptoStreamMode.Read);
            cs1.Read(cipherbytes, 0, cipherbytes.Length);
            plainbytes2 = ms1.ToArray();
            cs1.Close();
            ms1.Close();

            label7.Text = Encoding.ASCII.GetString(plainbytes2);


        }





我的尝试:



在我的代码中cipherbyte是label6中的加密文本。当我运行代码时,它说对象引用没有设置为对象的实例。



What I have tried:

in my code the cipherbyte is encrypted text in label6..when i run the code it says object reference not set to an instance of an object.

推荐答案


这篇关于请帮帮我解密代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 22:25