资源简介
有关DES加密解密的工具类,提供JS、Java两个版本,只需要引入该类和文件,直接调用方法。
代码片段和文件信息
package com.matol.utility;
import java.util.ArrayList;
import java.util.List;
public class Encrypt {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Encrypt en = new Encrypt();
String fKey = “pdcss“;/* 必需的密钥 */
String sKey = “css“;
String tKey = “co“;
String data = “ABC码头matol-110ABC码头matol-110ABC码头matol-110ABC码头matol-110ABC码头matol-110ABC码头matol-110ABC码头matol-110“;
String strs = en.strEncode(data fKey sKey tKey);
String decs = en.strDecode(strs fKey sKey tKey);
System.out.println(strs);
System.out.println(decs);
System.out.println(“明文长度:“ + decs.length());
System.out.println(“密文长度:“ + strs.length());
}
/**
* DES加密/解密
*
* @Copyright Copyright (c)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 27408 2011-08-14 18:32 addpass\Encrypt.java
文件 25242 2010-04-27 11:15 addpass\Encrypt.js
目录 0 2011-08-25 21:04 addpass
----------- --------- ---------- ----- ----
52650 3
- 上一篇:受限玻尔兹曼机Java源码
- 下一篇:json_simple.jar
评论
共有 条评论