能力值:
( LV2,RANK:10 )
|
-
-
76 楼
mark
|
能力值:
( LV3,RANK:20 )
|
-
-
77 楼
其实是有意义的.可以进recovery操作.默认就是root权限
|
能力值:
( LV2,RANK:10 )
|
-
-
78 楼
byte[] res = new byte[]{(byte)0 , (byte)1 , (byte)2 ,
(byte)5 , (byte)8} ;
MessageDigest md;
try {
md = MessageDigest.getInstance("SHA-1");
byte[] hash = md.digest(res);
String hashStr = EncoderHandler.getFormattedText(hash) ;
System.out.println(hashStr);
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
public static String getFormattedText(byte[] bytes) {
int len = bytes.length;
StringBuilder buf = new StringBuilder(len * 2);
// 把密文转换成十六进制的字符串形式
for (int j = 0; j < len; j++) {
buf.append(HEX_DIGITS[(bytes[j] >> 4) & 0x0f]);
buf.append(HEX_DIGITS[bytes[j] & 0x0f]);
}
return buf.toString();
}
用java写了一个
|
能力值:
( LV2,RANK:10 )
|
-
-
79 楼
楼主研究得很深入啊,来支持一下了
|
能力值:
( LV2,RANK:10 )
|
-
-
80 楼
分析得相当好
|
能力值:
( LV2,RANK:10 )
|
-
-
81 楼
可以,但是要有root权限。
|
能力值:
( LV2,RANK:10 )
|
-
-
82 楼
好几年了,我想问的是,这个加密机制还没变么?
|
|
|