搜索资源列表
DANBIAO
- 一个单表加解密程序-a single table encryption and decryption procedures
dataencrypt
- 运行程序,在“密钥”编辑框中输入密钥,在“待加密的字符串”编辑框中输入要加密的字符串,单击“加密”按钮,密文将显示在“加密后的字符串”编辑框中。
fileencrypt
- 运行程序,输入密钥,单击“浏览”按钮,选择要进行加密或解密的文本文件(.txt格式的文件),单击“加密”或“解密”按钮,即完成文本文件的加密或者解密操作。
DESEncrption
- DES加密程序,单步执行以及文件加密 VC
chap04
- 各种反分析软件的手法,包括(反Dede,反单步跟踪,反SoftICE,Ollydbg,反静态分析,以及程序自身的CRC32效验等,对于初学者有很大的帮助.
ys
- 单报数据加密,在文件传输时对数据报进行加密本程序为服务器端程序。
算法
- 维吉尼亚(Vigenere)密码为了提高密码的破译的难度,人们有发明一种多表置换的密码,即一个明文字母可以表示为多个密文字母,多表密码加密算法结果将使得对单表置换用的简单频率分析方法失效,其中维吉尼亚密码就是一种典型的加密方法。维吉尼亚密码是使用一个词组(语句)作为密钥,词组中每一个字母都作为移位替换密码密钥确定一个替换表,维吉尼亚密码循环的使用每一个替换表完成明文字母到密文字母的变换,最后所得到的密文字母序列即为加密得到的密文,具体过程如下: 设密钥 ,明文 , 加密变换 其中 例如,M=da
iiami
- 这是根据单码加密算法为原理的加密密码程序,可以防止暴力攻击,保障信息安全.-This is a single-key encryption algorithm in accordance with the principle of the encryption password for the procedure, can prevent violent attacks, to protect information security.
AES
- 应用编码与计算机密码学program 《应用编码与计算机密码学》程序 单钥密码算法中的AES算法-Applied Cryptography and computer coding program " Applied Cryptography and computer coding" procedure, single key cryptographic algorithm of AES algorithm
fileencrypt
- 对于计算机中的一些机密文本文件,为了防止其他非法用户查阅或盗取,可对其进行加密处理。运行程序,输入密钥,单击“浏览”按钮,选择要进行加密的文件,单击“加密”,即可完成对文本的加密操作-For the computer, some of the confidential text file, in order to prevent other unauthorized users access to or theft may be its encrypted. Run the program, e
01
- 单报数据加密方案,基于服务器端程序设计步骤。-One reported data encryption scheme, based on server-side programming steps.
02
- 单报数据加密方案,基于客户器端程序设计步骤。-One reported data encryption scheme, based on server-side programming steps.
SingleTripleDES
- 实现DES单重及三重加解密,并有测试程序。-To achieve a single weight and triple DES encryption, and a test program.
danbiaodaihuan
- 用visual c++编程实现单表代换密码程序,实现其加密解密过程-visual c++ programming with single-table substitution process,to achieve its encryption and decryption process
TEA
- Tiny Encryption Algrithm.非常简单有效的加密算法,适合网络传送程序和单品机程序。-Tiny Encryption Algrithm. Is very simple and effective encryption algorithm, suitable for network transmission process and a single product machine program.
JIANDANJIAMI
- 简单加密程序源代码.简 单加密程序源代码.简单加密程序源代码.-Simple encryption source code Simple encryption source code Simple encryption source code
VB
- VB Decompiler Pro 保存插件 原版程序保存Project时有bug,特此编写了一个插件,文件是plugin\savehlp.dll。使用时先打开欲反编译的程序,然后进入Tools菜单,单击Project Save Helper,即会保存源码至out目录。-VB Decompiler Pro plug the original program has saved when you save the Project bug, hereby write a plugin file
affine
- 1)用C\C++语言实现单表仿射(Affine)加/解密算法; 2)用C\C++语言实现统计26个英文字母出现频率的程序; 3)利用单表仿射加/解密程序对一段较长的英文文章进行加密,再对明文和密文中字母出现的频率进行统计并作对比,观察有什么规律。-1) C \ C++ language to achieve a single table Affine (Affine) encryption/decryption algorithm 2) C \ C++ language stati
base64
- Base64是网络上最常见的用于传输8Bit字节码的编码方式之一,Base64就是一种基于64个可打印字符来表示二进制数据的方法。可查看RFC2045~RFC2049,上面有MIME的详细规范。 Base64编码是从二进制到字符的过程,可用于在HTTP环境下传递较长的标识信息。例如,在Java Persistence系统Hibernate中,就采用了Base64来将一个较长的唯一标识符(一般为128-bit的UUID)编码为一个字符串,用作HTTP表单和HTTP GET URL中的参数。在其他