平常我們都接觸過軟體註冊,輸入序列號、啟用碼、註冊碼、授權碼;對於這些字元碼到底代表什麼含義不甚瞭解,但一般來說,這些字元碼中都有幾個特點:
1、唯一性,肯定是一個唯一的序列號,否則就會存在濫用的問題。
2、加密性,肯定是經過加密或者混亂的,防止大家自己生成序列號。
3、解密性,軟體自身肯定可以解密,否則無法驗證合法性。
4、可讀性,序列號一般都比較標準,方便書寫和記憶,所以一般都為數字和字母。
以下給出簡單示例:
[java] view plaincopy
/**
* byte轉雜湊
* @param b
* @return
*/
public static String byte2hex(byte[] b) {
String hs = "";
String stmp = "";
for (int n = 0; n < b.length; n++) {
stmp = Integer.toHexString(b[n] & 0xFF);
if (stmp.length() == 1)
hs += ("0" + stmp);
else
hs += stmp;
}
return hs.toUpperCase();
* 雜湊轉byte
public static byte[] hex2byte(byte[] b) {
if ((b.length % 2) != 0)
throw new IllegalArgumentException("長度不是偶數");
byte[] b2 = new byte[b.length / 2];
for (int n = 0; n < b.length; n += 2) {
String item = new String(b, n, 2);
b2[n / 2] = (byte) Integer.parseInt(item, 16);
return b2;
平常我們都接觸過軟體註冊,輸入序列號、啟用碼、註冊碼、授權碼;對於這些字元碼到底代表什麼含義不甚瞭解,但一般來說,這些字元碼中都有幾個特點:
1、唯一性,肯定是一個唯一的序列號,否則就會存在濫用的問題。
2、加密性,肯定是經過加密或者混亂的,防止大家自己生成序列號。
3、解密性,軟體自身肯定可以解密,否則無法驗證合法性。
4、可讀性,序列號一般都比較標準,方便書寫和記憶,所以一般都為數字和字母。
以下給出簡單示例:
[java] view plaincopy
/**
* byte轉雜湊
* @param b
* @return
*/
public static String byte2hex(byte[] b) {
String hs = "";
String stmp = "";
for (int n = 0; n < b.length; n++) {
stmp = Integer.toHexString(b[n] & 0xFF);
if (stmp.length() == 1)
hs += ("0" + stmp);
else
hs += stmp;
}
return hs.toUpperCase();
}
/**
* 雜湊轉byte
* @param b
* @return
*/
public static byte[] hex2byte(byte[] b) {
if ((b.length % 2) != 0)
throw new IllegalArgumentException("長度不是偶數");
byte[] b2 = new byte[b.length / 2];
for (int n = 0; n < b.length; n += 2) {
String item = new String(b, n, 2);
b2[n / 2] = (byte) Integer.parseInt(item, 16);
}
return b2;
}