资源列表
[加密解密] DES(c++)
说明:在通信网络的两端,双方约定一致的Key,在通信的源点用Key对核心数据进行DES加密,然后以密码形式在公共通信网(如电话网)中传输到通信网络的终点,数据到达目的地后,用同样的Key对密码数据进行解密,便再现了明码形式的核心数据。这样,便保证了核心数据在公共通信网中传输的安全性和可靠性。-communications networks in the two ends, the two sides agreed unanimously the Key, In communications with<fang> 在 2025-06-24 上传 | 大小:4kb | 下载:0
[加密解密] officepasswordcracker
说明:可以破解由数字和大小写字母和各类符号组成的word或excel的密码。-Can be broken by the numbers and upper and lower case letters and various symbols of the word or excel password.<yesheng8810> 在 2025-06-24 上传 | 大小:4kb | 下载:0
[加密解密] RSA
说明:rsa算法演示,运用数论知识和经典的RSA算法,可生成超长的密钥,对文件经行加密,解密的演示。当时的开发环境是JCreator 3.50。-rsa algorithm demo, using knowledge of number theory and classical RSA algorithm, can generate very long keys, the document by line encryption, decryption of the presentation. At t<zgyang> 在 2025-06-24 上传 | 大小:4kb | 下载:0
[加密解密] md5
说明:用delphi编写的md5实现程序,实现了基本的加密功能,可用来做加密验证和md5实现方法学习,适合delphi初学者。-Delphi prepared using md5 realize procedures realize the basic encryption, authentication and encryption can be used to do md5 realize ways of learning, suitable for beginners delphi.<sadsdfdsf> 在 2025-06-24 上传 | 大小:4kb | 下载:0
[加密解密] gudianmima
说明: 古典密码中,主要的思想为移位算法及置换算法。 1.移位密码 密钥K为整数,且取值空间为0到25;加密函数:x = x + k (mod 26);解密函数:x = x - k (mod 26)。当K=3时,为凯撒密码。 2.仿射密码 密钥对由a、b组成,整数a满足 gcd(a, 26) = 1,整数b的取值空间为0到25;加密函数:x = ax + b(mod 26);解密函数:x = a*y - a*b (mod 26)。当a=1,b=3时,为凯撒密码。 3.维吉<徐凯波> 在 2025-06-24 上传 | 大小:4kb | 下载:1