⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 8-4-4.cs

📁 使用RC2對稱式金鑰加密演算法來進行檔案加密
💻 CS
字号:
using System;
using System.IO;
using System.Security.Cryptography;

namespace ExampleSolution
{
    class Example844
    {
        static void Main(string[] args)
        {
            byte[] byteKey = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 };
            byte[] byteIV = { 8, 7, 6, 5, 4, 3, 2, 1 };

            String strPlainFile = String.Empty;
            String strEncryptFile = String.Empty;
            String strDecryptFile = String.Empty;

            try
            {
                Console.WriteLine("RC2 郎

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -