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

资源简介

自用,用于加密文本数据

资源截图

代码片段和文件信息

/*
 * programmed by george batres
 * according to RC5 algorithm
 * with a little change
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
 
namespace Rc5_v2
{
    class Rc5
    {
        uint[] s;
        uint[] l;
        uint b u t c;
        byte[] key;
        int rounds;
 
        public Rc5()
        {
            string str = “georgebatres“;
            key = GetKeyFromString(str);
            rounds = 16;
            b = (uint)key.Length;
            u = 4;
            t = (uint)(34);
            c = 12 / u;
            s = new uint[34];
            l = new uint[12];
 
            GenerateKey(key rounds);
        }
         
        public Rc5(string passwordint round)
        {
            key = GetKeyF

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        6706  2019-12-03 17:02  rc5.cs

评论

共有 条评论