搜索资源列表
Des
- this progam written in java language and describe the des algorithm that allow us to encrypt and decrypt the information
DesEncrypt
- * 使用DES加密与解密,可对byte[],String类型进行加密与解密 密文可使用String,byte[]存储. * * 方法: void getKey(String strKey)从strKey的字条生成一个Key * * String getEncString(String strMing)对strMing进行加密,返回String密文 String * getDesString(String strMi)对strMin进行解密,返回String明文
Des
- 常用的DES可逆加解密程序 包含测试程序 -DES Encrypt/Decrypt Code
transposition-chat-my
- trans position a simple java application to encrypt and decrypt the input text .client and server applet is used to implement chatting.encrypted or simple texts can be send between client and server.Tcp is used for communication
05130046_05130085_05130143
- JAVA Encrypt and Decrypt Security
ENC
- source code to encrypt and decrypt text (like password) that is sent in a network
testRSA
- encrypt/decrypt file using RSA
Java-encrypt--decrypt-method-daqo
- java的加密解密很不错,我在里面学到了不少东西哦-Java encrypt, decrypt, very good, I learned a lot in it: oh
Lab1_3_1
- 1)作为通讯的双方A和B,都有一个共同信赖的第三方CA,由CA为每个人生成公钥和相应的私钥并分发给A、B。 (2)A和B分别将自己的公钥提供给对方,然后A用B的公钥加密一个数据X(整型,可自己定义,比如100)并发送给B,B用自己的私钥解密后得到数据X,然后按协商好的函数F(比如F(X)=2*X)计算得到F(X),再利用A的公钥加密后发送给A;A在本地用自己的私钥解密后得到F(x),在同本地计算得到的F(X)进行对比,如果一致,说明公钥分配成功。 (3)A用B的公钥对一图象文
VernamCipher.tar
- The program encrypt/decrypt text using vernam cipher algorithm
CryptoUtils
- Java to encrypt, decrypt in the operation
AESProgram
- * 已知明文为Hello_AES * 密钥是0101101100001110的12次重复构成的192比特密钥 * 对明文进行加密,并进行解密验证 编写语言 Java -* Known plaintext Hello_AES* key 0101101100001110 12 repetitions of a 192-bit key* plaintext encrypt and decrypt verify the written language Java
Experiment-20105231
- 一个功能健全的文件管理器,Create/Delete a directory. Enter a specified directory. List the files and directories in the current directory (you do not have to expand any sub-directory). Rename/delete a specified file. Copy a specified file to another direc
Des
- 使用java des算法对数据进行加密和解密-java encrypt/decrypt
filemanager
- 模拟DOS文件管理系统,可创建删除文件(夹),可加密解密文件,可显示当前目录内容-Analog DOS file management system, you can create delete files (folders), you can encrypt decrypt files, you can display the contents of the current directory
crypt.java
- 加密解密文件,支持AES128/AES256/ECB/CBC等-encrypt/decrypt file
PasswordEn
- Java application used to encrypt password and store to the database. Uses MD5 encryption and can also be used to decrypt passwords.
RC4
- encrypt, decrypt using RC4...file any input
Des
- 单点登录方案及代码,通过自定义规则然后加密解密的方式登录(Single sign-on scheme and code, custom rules and then encrypt decrypt ways to log in)
Base64
- Base64是网络上最常见的用于传输8Bit字节代码的编码方式之一,大家可以查看RFC2045~RFC2049,上面有MIME的详细规范。Base64编码可用于在HTTP环境下传递较长的标识信息。再次运用java语言实现加密/解密、base64与图片互相转化。(Base64 is one of the most common coding methods used to transmit 8Bit byte code on the network. We can check RFC2045 ~