• 大小: 6.95KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: C#  DES  解密加密  

资源简介

初级学习

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Cryptography;
using System.Text;
using System.IO;
namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write(“请输入需要加密的字符串:“);
            string str = Console.ReadLine();
            string strEncrypt = DESEncrypt.DesEncrypt(str);
            string strDecrypt = DESEncrypt.DesDecrypt(strEncrypt);

            Console.WriteLine(strEncrypt);
            Console.WriteLine(strDecrypt);
            System.IO.StreamWriter sw = new System.IO.StreamWriter(“加密.txt“);
            sw.WriteLine(strEncrypt);
            sw.WriteLine(strDecrypt);
            sw.Close();
            Console.Write(“按任意键退

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2459  2016-06-08 13:58  DES加解密\DES加解密\DES加解密.csproj

     文件       3336  2016-06-07 18:19  DES加解密\DES加解密\Program.cs

     文件       1388  2016-06-07 16:23  DES加解密\DES加解密\Properties\AssemblyInfo.cs

     文件        878  2016-06-07 18:02  DES加解密\DES加解密.sln

    ..A..H.     15872  2016-06-08 13:58  DES加解密\DES加解密.suo

     目录          0  2016-06-08 13:58  DES加解密\DES加解密\obj\x86\Debug

     目录          0  2016-06-08 13:58  DES加解密\DES加解密\bin\Debug

     目录          0  2016-06-07 16:23  DES加解密\DES加解密\obj\x86

     目录          0  2016-06-07 16:23  DES加解密\DES加解密\bin

     目录          0  2016-06-07 16:23  DES加解密\DES加解密\obj

     目录          0  2016-06-07 16:23  DES加解密\DES加解密\Properties

     目录          0  2016-06-08 13:57  DES加解密\DES加解密

     目录          0  2016-06-08 10:08  DES加解密

----------- ---------  ---------- -----  ----

                23933                    13


评论

共有 条评论