首页
社区
课程
招聘
[旧帖] 麻烦帮我看下这个是什么算法!! 0.00雪花
发表于: 2011-5-17 21:28 4089

[旧帖] 麻烦帮我看下这个是什么算法!! 0.00雪花

2011-5-17 21:28
4089
麻烦帮我看下是什么加密算法,后面是加密后的数据:
36232319870208321x    ALyaNtycALeCT20d6vunSrg==
421081199210112499    ANd6rtdDWPpdrqr325WeL/w==
430621197912132716    AoZ8rg5m1L349cPyqTnQ8jw==
430621198003111998    AzaLdVhR8LX67gBQNPlwAOg==
430621198206110039    ATBipEl+JjrmS9FoZ071yWQ==
430621198310055017    AzgA29+N207ye859dS+tqSQ==
430621198511030019    A2V6PNjDLgy0a/shceTeNwQ==

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (5)
雪    币: 242
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
先MD5,然后BASE64
空字符串""的结果就是:1B2M2Y8AsgTpgAmY7PhCfg==
跟你的很像
Java code

import java.io.IOException;
import java.security.MessageDigest;

import sun.misc.BASE64Encoder;
import sun.misc.BASE64Decoder;

/**
* 本类提供通用的安全算法
*/
public class SecurityArithmetic {
public final static byte[] md5(String s) {
byte[] md=null;
try {
byte[] btInput = s.getBytes();
MessageDigest mdInst = MessageDigest.getInstance("MD5");
mdInst.update(btInput);
md = mdInst.digest();
}
catch (Exception e) {
// e.printStackTrace();
return null;
}
return md;
}

public static String base64Encode(byte[] b){
return new BASE64Encoder().encode(b);
}

public static byte[] base64Decode(String b){
try {
return new BASE64Decoder().decodeBuffer(b);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return null;
}
}

public static String md5AndHex(String s){
byte[] b=md5(s);
String temp="";
for (int i=0;i<b.length;i++){
temp+=StringUtils.pad(Integer.toHexString(b & 0xff), 2, '0', true);
}
return temp;
}

public static String md5AndBase64(String s){
return base64Encode(md5(s));
}
/**
* @param args
*/
public static void main(String[] args) {
//d41d8cd98f00b204e9800998ecf8427e
//d41d8cd98f00b204e9800998ecf8427e
System.out.println(md5AndBase64("123456"));
}

}
2011-5-17 22:04
0
雪    币: 27
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
是 RC2 加密的  例如:
aaaaaaaaaaaaaaa  加密后:TbXe0oMObb1be13HFEHaXQ==
此加密方式通过生成一个密钥和一个向量来进行加密
2011-5-17 22:26
0
雪    币: 149
活跃值: (150)
能力值: ( LV6,RANK:90 )
在线值:
发帖
回帖
粉丝
4
同意三楼,学习了……
2011-5-17 23:32
0
雪    币: 9
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
是该好好学习   
2011-5-20 20:16
0
雪    币: 3361
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
6
学习了.常见这样的字符
2011-5-20 22:14
0
游客
登录 | 注册 方可回帖
返回
//