搜索资源列表
DANBIAO
- 一个单表加解密程序-a single table encryption and decryption procedures
caser
- 一个初学者vc++环境下编写的初级凯撒加密算法和单表置换加密算法,对话框实现
source
- Java实现传统算法加密解密,包括单表代换,PLAYFAIR,维吉尼亚算法。
Casa
- 替代密码包括多种类型,如单表替代密码,多表替代密码,多字母替代密码等。试编程实现一种典型的单表替代密码—凯撒(Caesar)密码。它的加密方法是将明文中的每个字母用此字符在字母表中后面的第k个字母替代。
Caesar
- 替代密码包括多种类型,如单表替代密码,多 字母替代密码等。试编程实现一种典型的单表替代密码—凯撒(Caesar)密码。它的加密方法是将明文中的每个字母用此字符在字母表中后面的第k个字母替代。它的加密过程可以表示为下面的函数:E(k)=(m+k)modn ,其中,m为明文字母在字母表中的位置数,n为字母表中的字母个数,k为密钥,E(k)为密文字母在字母表中对应的位置数。
算法
- 维吉尼亚(Vigenere)密码为了提高密码的破译的难度,人们有发明一种多表置换的密码,即一个明文字母可以表示为多个密文字母,多表密码加密算法结果将使得对单表置换用的简单频率分析方法失效,其中维吉尼亚密码就是一种典型的加密方法。维吉尼亚密码是使用一个词组(语句)作为密钥,词组中每一个字母都作为移位替换密码密钥确定一个替换表,维吉尼亚密码循环的使用每一个替换表完成明文字母到密文字母的变换,最后所得到的密文字母序列即为加密得到的密文,具体过程如下: 设密钥 ,明文 , 加密变换 其中 例如,M=da
PermutationOS.rar
- 对信息进行加密解密操作 设计换位密码 单表代替密码 维吉尼亚密码,Encryption and decryption of information designed to operate a single table instead of transposition password password password Virginia
VigenereEncrypt.cpp
- Vigenere密码单表代换加密如明文为:wearediscoveredsaveyourself 密钥流为:ddeferfrfdwfefeggasdwfeffrg 密文流为:asfhjkhfkjerhfkjbjkfbdjkfgjk 即Ci=(Ki+Pi) 26 pi=(Ci-Ki) 26 要求实现加密和解密,C或C++描述源程序。 -Vigenere encrypted password alone, such as clear as the table Substitution
mima
- 密码学的简单加密,用单表置换算法实现一个字符串的加密-Cryptography simple encryption, single-table replacement algorithm for the realization of a string encryption
Monoalphabetic
- 单表加密算法、单表解密算法实现的简单示例-implementation of monoalphabetic encryption and decryption
SingleTableencrypted
- 单表加密的加密方法一般是代替或置换,是本人密码学所做课题,内赋两个版本.-Single Table encrypted encryption methods are generally in place of or replacement, are subject I did learn the password, which given two versions.
traditionalcode
- 古典密码算法中的单表代换密码算法、移位密码算法、Vigenere密码算法。算法比较简单,用命令的方式。可以随机生成明文和密钥。-Classical cryptographic algorithm in a single table substitution cipher, transposition cipher, Vigenere cipher. Algorithm is relatively simple, way to use the command. Can be randomly ge
SingleTable
- 古典密码学,单表置换算法,加密和解密算法,C语言源程序,VC++6.0编译通过-Single Table
danbiaodaihuan
- 用visual c++编程实现单表代换密码程序,实现其加密解密过程-visual c++ programming with single-table substitution process,to achieve its encryption and decryption process
lab1_1
- 实现单表替换的加解密源程序,密文和明文的大小写都支持。-A table for implementation of the source program, to enter the cipher text and clear.
paihao
- 密码学里的单表置换法的一个实际应用,可用来排考场座位号。-Cryptography in the single table a practical application of replacement method can be used to schedule exam seat number.
OneTablCipher
- 单表替换加密与加密算法,用户输入英文字母、汉字及空格等字符,采用代表替换对用户的输入进行加解密。-Replace single table encryption and encryption algorithm, the user input the English letters, Chinese characters and characters such as spaces, replaced by the representative of the user input and decr
Text_Encrypt
- 采用单表映射的古典加密方法加密解密英文内容的文本文件-Single-table mapping the English classical encryption methods encryption and decryption of the text file content
DianCMS.SQL_6.0.0
- 易点内容管理系统(DianCMS)是基于微软.NET Framework 4.0、AJAX1. 0技术,采用Microsoft Access/SQL Server 2000/2005/2008存储过程进行多层架构开发的内容管理系统。其功能设计主要面向中大型企业、各个行业、事业单位以及政府机关等复杂功能站点。系统已建立文章系统、图片系统、下载系统、个人求职、企业招聘、房产系统、音乐系统、视频系统、网上商店、P2P网贷。使用自定义模型、自定义字段、自定义表单、自定义录入界面、会员系统等功能,您还可以
base64
- Base64是网络上最常见的用于传输8Bit字节码的编码方式之一,Base64就是一种基于64个可打印字符来表示二进制数据的方法。可查看RFC2045~RFC2049,上面有MIME的详细规范。 Base64编码是从二进制到字符的过程,可用于在HTTP环境下传递较长的标识信息。例如,在Java Persistence系统Hibernate中,就采用了Base64来将一个较长的唯一标识符(一般为128-bit的UUID)编码为一个字符串,用作HTTP表单和HTTP GET URL中的参数。在其他