sm3加密
準(zhǔn)備jar
bcprov-jdk16-1.46.jar
兩個(gè)1.class
package sm3ww;
import java.io.UnsupportedEncodingException;
import java.security.Security;
import org.bouncycastle.crypto.digests.MD3Digest;
import org.bouncycastle.crypto.macs.HMac;
import org.bouncycastle.crypto.params.KeyParameter;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
public class SM3Util {
?? ?private final static String ENCODING="ISO-8859-1";
?? ?static{
?? ??? ?Security.addProvider(new BouncyCastleProvider());
?? ?}
/**
運(yùn)行測試類
*/
//?? ?public static void main(String[] args) {
//?? ??? ?String s ="億個(gè)色啊發(fā)額發(fā)成個(gè)額億個(gè)額億個(gè)色啊發(fā)額發(fā)成個(gè)額";
//?? ??? ?String kiy="ddd";
//?? ??? ?String s1=new String();
//?? ??? ?String s2=new String();
//?? ??? ?s1=encode(kiy, s);
//?? ??? ?s2=encode(s);
//?? ??? ?System.out.println(s1);
//?? ??? ?System.out.println(s1.length());
//?? ??? ?System.out.println(s2);
//?? ??? ?System.out.println(s2.length());
//?? ?}
?? ?/**
?? ? * 校驗(yàn)-無密鑰
?? ? * @param src
?? ? * @param hexString
?? ? * @return
?? ? */
?? ?public static Boolean verify(String src,String hexString){
?? ??? ?Boolean isVer=null;
?? ??? ?byte[] bytes;
?? ??? ?try {
?? ??? ??? ?bytes = src.getBytes(ENCODING);
?? ??? ??? ?byte[] hexToByte = HexString.hexToByte(hexString);
?? ??? ??? ?byte[] newhash = hash(bytes);
?? ??? ??? ?if(Arrays.equals(newhash, hexToByte)){
?? ??? ??? ??? ?isVer=true;
?? ??? ??? ?}
?? ??? ?} catch (UnsupportedEncodingException e) {
?? ??? ??? ?// TODO Auto-generated catch block
?? ??? ??? ?e.printStackTrace();
?? ??? ?}
?? ??? ?return isVer;
?? ?}
?? ?/**
?? ? * 方式1 sm3算法加密-自定義秘鑰
?? ? * @param key 秘鑰
?? ? * @param p 被加密數(shù)據(jù)
?? ? * @return
?? ? */
?? ?public static String encode(String key,String p){
?? ??? ?String byteToHex="";
?? ??? ?try {
?? ??? ??? ?byte[] bytes = p.getBytes(ENCODING);
?? ??? ??? ?byte[] hash = hash(key.getBytes(ENCODING));
?? ??? ??? ?byteToHex = HexString.byteToHex(hash);
?? ??? ?} catch (UnsupportedEncodingException e) {
?? ??? ??? ?// TODO Auto-generated catch block
?? ??? ??? ?e.printStackTrace();
?? ??? ?}
?? ??? ?return byteToHex;
?? ?}
?? ?/**
?? ? * 方式2 sm3算法加密
?? ? * @param p 被加密數(shù)據(jù)
?? ? * @return
?? ? */
?? ?public static String encode(String p){
?? ??? ?String byteToHex="";
?? ??? ?try {
?? ??? ??? ?byte[] bytes = p.getBytes(ENCODING);
?? ??? ??? ?byte[] hash = hash(bytes);
?? ??? ??? ?byteToHex = HexString.byteToHex(hash);
?? ??? ?} catch (UnsupportedEncodingException e) {
?? ??? ??? ?// TODO Auto-generated catch block
?? ??? ??? ?e.printStackTrace();
?? ??? ?}
?? ??? ?return byteToHex;
?? ?}
?? ?/**
?? ? * 返回長度=32的byte數(shù)組
?? ? * @param data 被加密的byte數(shù)組
?? ? * @return
?? ? */
?? ?public static byte[] hash(byte[] data){
?? ??? ?SM3Digest sm3Digest = new SM3Digest();
?? ??? ?sm3Digest.update(data, 0, data.length);
?? ??? ?byte[] hash =new ?byte[sm3Digest.getDigestSize()];
?? ??? ?sm3Digest.doFinal(hash, 0);
?? ??? ?return hash;
?? ?}
?? ?/**
?? ? * 自定義秘鑰加密
?? ? * 通過秘鑰加密
?? ? * @param key 秘鑰
?? ? * @param data 被加密的byte數(shù)組
?? ? * @return
?? ? */
?? ?public static byte[] hamc(byte[] key,byte[] data){
?? ??? ?KeyParameter params=new KeyParameter(key);
?? ??? ?SM3Digest sm3Digest = new SM3Digest();
?? ??? ?HMac hm=new HMac(sm3Digest);
?? ??? ?hm.init(params);
?? ??? ?hm.update(data, 0, data.length);
?? ??? ?byte[] hash =new ?byte[hm.getMacSize()];
?? ??? ?hm.doFinal(hash, 0);
?? ??? ?return hash;
?? ?}
}
2.class
package sm3ww;
?
import java.math.BigInteger; ?
?
public class HexString ??
{ ?
? ? /**?
? ? ?* 整形轉(zhuǎn)換成網(wǎng)絡(luò)傳輸?shù)淖止?jié)流(字節(jié)數(shù)組)型數(shù)據(jù)?
? ? ?* ?
? ? ?* @param num 一個(gè)整型數(shù)據(jù)?
? ? ?* @return 4個(gè)字節(jié)的自己數(shù)組?
? ? ?*/ ?
? ? public static byte[] intToBytes(int num) ?
? ? { ?
? ? ? ? byte[] bytes = new byte[4]; ?
? ? ? ? bytes[0] = (byte) (0xff & (num >> 0)); ?
? ? ? ? bytes[1] = (byte) (0xff & (num >> 8)); ?
? ? ? ? bytes[2] = (byte) (0xff & (num >> 16)); ?
? ? ? ? bytes[3] = (byte) (0xff & (num >> 24)); ?
? ? ? ? return bytes; ?
? ? } ?
??
? ? /**?
? ? ?* 四個(gè)字節(jié)的字節(jié)數(shù)據(jù)轉(zhuǎn)換成一個(gè)整形數(shù)據(jù)?
? ? ?* ?
? ? ?* @param bytes 4個(gè)字節(jié)的字節(jié)數(shù)組?
? ? ?* @return 一個(gè)整型數(shù)據(jù)?
? ? ?*/ ?
? ? public static int byteToInt(byte[] bytes) ??
? ? { ?
? ? ? ? int num = 0; ?
? ? ? ? int temp; ?
? ? ? ? temp = (0x000000ff & (bytes[0])) << 0; ?
? ? ? ? num = num | temp; ?
? ? ? ? temp = (0x000000ff & (bytes[1])) << 8; ?
? ? ? ? num = num | temp; ?
? ? ? ? temp = (0x000000ff & (bytes[2])) << 16; ?
? ? ? ? num = num | temp; ?
? ? ? ? temp = (0x000000ff & (bytes[3])) << 24; ?
? ? ? ? num = num | temp; ?
? ? ? ? return num; ?
? ? } ?
??
? ? /**?
? ? ?* 長整形轉(zhuǎn)換成網(wǎng)絡(luò)傳輸?shù)淖止?jié)流(字節(jié)數(shù)組)型數(shù)據(jù)?
? ? ?* ?
? ? ?* @param num 一個(gè)長整型數(shù)據(jù)?
? ? ?* @return 4個(gè)字節(jié)的自己數(shù)組?
? ? ?*/ ?
? ? public static byte[] longToBytes(int num) ??
? ? { ?
? ? ? ? byte[] bytes = new byte[8]; ?
? ? ? ? for (int i = 0; i < 8; i++) ??
? ? ? ? { ?
? ? ? ? ? ? bytes[i] = (byte) (0xff & (num >> (i * 8))); ?
? ? ? ? } ?
??
? ? ? ? return bytes; ?
? ? } ?
??
? ? /**?
? ? ?* 大數(shù)字轉(zhuǎn)換字節(jié)流(字節(jié)數(shù)組)型數(shù)據(jù)?
? ? ?* ?
? ? ?* @param n?
? ? ?* @return?
? ? ?*/ ?
? ? public static byte[] byteConvert32Bytes(BigInteger n) ??
? ? { ?
? ? ? ? byte tmpd[] = (byte[])null; ?
? ? ? ? if(n == null) ?
? ? ? ? { ?
? ? ? ? ? ? return null; ?
? ? ? ? } ?
? ? ? ? ??
? ? ? ? if(n.toByteArray().length == 33) ?
? ? ? ? { ?
? ? ? ? ? ? tmpd = new byte[32]; ?
? ? ? ? ? ? System.arraycopy(n.toByteArray(), 1, tmpd, 0, 32); ?
? ? ? ? } ??
? ? ? ? else if(n.toByteArray().length == 32) ?
? ? ? ? { ?
? ? ? ? ? ? tmpd = n.toByteArray(); ?
? ? ? ? } ??
? ? ? ? else ?
? ? ? ? { ?
? ? ? ? ? ? tmpd = new byte[32]; ?
? ? ? ? ? ? for(int i = 0; i < 32 - n.toByteArray().length; i++) ?
? ? ? ? ? ? { ?
? ? ? ? ? ? ? ? tmpd[i] = 0; ?
? ? ? ? ? ? } ?
? ? ? ? ? ? System.arraycopy(n.toByteArray(), 0, tmpd, 32 - n.toByteArray().length, n.toByteArray().length); ?
? ? ? ? } ?
? ? ? ? return tmpd; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 換字節(jié)流(字節(jié)數(shù)組)型數(shù)據(jù)轉(zhuǎn)大數(shù)字?
? ? ?* ?
? ? ?* @param b?
? ? ?* @return?
? ? ?*/ ?
? ? public static BigInteger byteConvertInteger(byte[] b) ?
? ? { ?
? ? ? ? if (b[0] < 0) ?
? ? ? ? { ?
? ? ? ? ? ? byte[] temp = new byte[b.length + 1]; ?
? ? ? ? ? ? temp[0] = 0; ?
? ? ? ? ? ? System.arraycopy(b, 0, temp, 1, b.length); ?
? ? ? ? ? ? return new BigInteger(temp); ?
? ? ? ? } ?
? ? ? ? return new BigInteger(b); ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 根據(jù)字節(jié)數(shù)組獲得值(十六進(jìn)制數(shù)字)?
? ? ?* ?
? ? ?* @param bytes?
? ? ?* @return?
? ? ?*/ ?
? ? public static String getHexString(byte[] bytes) ??
? ? { ?
? ? ? ? return getHexString(bytes, true); ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 根據(jù)字節(jié)數(shù)組獲得值(十六進(jìn)制數(shù)字)?
? ? ?* ?
? ? ?* @param bytes?
? ? ?* @param upperCase?
? ? ?* @return?
? ? ?*/ ?
? ? public static String getHexString(byte[] bytes, boolean upperCase) ??
? ? { ?
? ? ? ? String ret = ""; ?
? ? ? ? for (int i = 0; i < bytes.length; i++) ??
? ? ? ? { ?
? ? ? ? ? ? ret += Integer.toString((bytes[i] & 0xff) + 0x100, 16).substring(1); ?
? ? ? ? } ?
? ? ? ? return upperCase ? ret.toUpperCase() : ret; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 打印十六進(jìn)制字符串?
? ? ?* ?
? ? ?* @param bytes?
? ? ?*/ ?
? ? public static void printHexString(byte[] bytes) ??
? ? { ?
? ? ? ? for (int i = 0; i < bytes.length; i++) ??
? ? ? ? { ?
? ? ? ? ? ? String hex = Integer.toHexString(bytes[i] & 0xFF); ?
? ? ? ? ? ? if (hex.length() == 1) ??
? ? ? ? ? ? { ?
? ? ? ? ? ? ? ? hex = '0' + hex; ?
? ? ? ? ? ? } ?
? ? ? ? ? ? System.out.print("0x" + hex.toUpperCase() + ","); ?
? ? ? ? } ?
? ? ? ? System.out.println(""); ?
? ? } ?
? ? ??
? ? /**?
? ? ?* Convert hex string to byte[]?
? ? ?* ?
? ? ?* @param hexString?
? ? ?* ? ? ? ? ? ?the hex string?
? ? ?* @return byte[]?
? ? ?*/ ?
? ? public static byte[] hexStringToBytes(String hexString) ??
? ? { ?
? ? ? ? if (hexString == null || hexString.equals("")) ??
? ? ? ? { ?
? ? ? ? ? ? return null; ?
? ? ? ? } ?
? ? ? ? ??
? ? ? ? hexString = hexString.toUpperCase(); ?
? ? ? ? int length = hexString.length() / 2; ?
? ? ? ? char[] hexChars = hexString.toCharArray(); ?
? ? ? ? byte[] d = new byte[length]; ?
? ? ? ? for (int i = 0; i < length; i++) ??
? ? ? ? { ?
? ? ? ? ? ? int pos = i * 2; ?
? ? ? ? ? ? d[i] = (byte) (charToByte(hexChars[pos]) << 4 | charToByte(hexChars[pos + 1])); ?
? ? ? ? } ?
? ? ? ? return d; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* Convert char to byte?
? ? ?* ?
? ? ?* @param c?
? ? ?* ? ? ? ? ? ?char?
? ? ?* @return byte?
? ? ?*/ ?
? ? public static byte charToByte(char c) ??
? ? { ?
? ? ? ? return (byte) "0123456789ABCDEF".indexOf(c); ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 用于建立十六進(jìn)制字符的輸出的小寫字符數(shù)組?
? ? ?*/ ?
? ? private static final char[] DIGITS_LOWER = {'0', '1', '2', '3', '4', '5', ?
? ? ? ? ? ? '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}; ?
? ?
? ? /**?
? ? ?* 用于建立十六進(jìn)制字符的輸出的大寫字符數(shù)組?
? ? ?*/ ?
? ? private static final char[] DIGITS_UPPER = {'0', '1', '2', '3', '4', '5', ?
? ? ? ? ? ? '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; ?
? ?
? ? /**?
? ? ?* 將字節(jié)數(shù)組轉(zhuǎn)換為十六進(jìn)制字符數(shù)組?
? ? ?*?
? ? ?* @param data byte[]?
? ? ?* @return 十六進(jìn)制char[]?
? ? ?*/ ?
? ? public static char[] encodeHex(byte[] data) { ?
? ? ? ? return encodeHex(data, true); ?
? ? } ?
? ?
? ? /**?
? ? ?* 將字節(jié)數(shù)組轉(zhuǎn)換為十六進(jìn)制字符數(shù)組?
? ? ?*?
? ? ?* @param data ? ? ? ?byte[]?
? ? ?* @param toLowerCase <code>true</code> 傳換成小寫格式 , <code>false</code> 傳換成大寫格式?
? ? ?* @return 十六進(jìn)制char[]?
? ? ?*/ ?
? ? public static char[] encodeHex(byte[] data, boolean toLowerCase) { ?
? ? ? ? return encodeHex(data, toLowerCase ? DIGITS_LOWER : DIGITS_UPPER); ?
? ? } ?
? ?
? ? /**?
? ? ?* 將字節(jié)數(shù)組轉(zhuǎn)換為十六進(jìn)制字符數(shù)組?
? ? ?*?
? ? ?* @param data ? ? byte[]?
? ? ?* @param toDigits 用于控制輸出的char[]?
? ? ?* @return 十六進(jìn)制char[]?
? ? ?*/ ?
? ? protected static char[] encodeHex(byte[] data, char[] toDigits) { ?
? ? ? ? int l = data.length; ?
? ? ? ? char[] out = new char[l << 1]; ?
? ? ? ? // two characters form the hex value. ?
? ? ? ? for (int i = 0, j = 0; i < l; i++) { ?
? ? ? ? ? ? out[j++] = toDigits[(0xF0 & data[i]) >>> 4]; ?
? ? ? ? ? ? out[j++] = toDigits[0x0F & data[i]]; ?
? ? ? ? } ?
? ? ? ? return out; ?
? ? } ?
? ?
? ? /**?
? ? ?* 將字節(jié)數(shù)組轉(zhuǎn)換為十六進(jìn)制字符串?
? ? ?*?
? ? ?* @param data byte[]?
? ? ?* @return 十六進(jìn)制String?
? ? ?*/ ?
? ? public static String encodeHexString(byte[] data) { ?
? ? ? ? return encodeHexString(data, true); ?
? ? } ?
? ?
? ? /**?
? ? ?* 將字節(jié)數(shù)組轉(zhuǎn)換為十六進(jìn)制字符串?
? ? ?*?
? ? ?* @param data ? ? ? ?byte[]?
? ? ?* @param toLowerCase <code>true</code> 傳換成小寫格式 , <code>false</code> 傳換成大寫格式?
? ? ?* @return 十六進(jìn)制String?
? ? ?*/ ?
? ? public static String encodeHexString(byte[] data, boolean toLowerCase) { ?
? ? ? ? return encodeHexString(data, toLowerCase ? DIGITS_LOWER : DIGITS_UPPER); ?
? ? } ?
? ?
? ? /**?
? ? ?* 將字節(jié)數(shù)組轉(zhuǎn)換為十六進(jìn)制字符串?
? ? ?*?
? ? ?* @param data ? ? byte[]?
? ? ?* @param toDigits 用于控制輸出的char[]?
? ? ?* @return 十六進(jìn)制String?
? ? ?*/ ?
? ? protected static String encodeHexString(byte[] data, char[] toDigits) { ?
? ? ? ? return new String(encodeHex(data, toDigits)); ?
? ? } ?
? ?
? ? /**?
? ? ?* 將十六進(jìn)制字符數(shù)組轉(zhuǎn)換為字節(jié)數(shù)組?
? ? ?*?
? ? ?* @param data 十六進(jìn)制char[]?
? ? ?* @return byte[]?
? ? ?* @throws RuntimeException 如果源十六進(jìn)制字符數(shù)組是一個(gè)奇怪的長度,將拋出運(yùn)行時(shí)異常?
? ? ?*/ ?
? ? public static byte[] decodeHex(char[] data) { ?
? ? ? ? int len = data.length; ?
? ?
? ? ? ? if ((len & 0x01) != 0) { ?
? ? ? ? ? ? throw new RuntimeException("Odd number of characters."); ?
? ? ? ? } ?
? ?
? ? ? ? byte[] out = new byte[len >> 1]; ?
? ?
? ? ? ? // two characters form the hex value. ?
? ? ? ? for (int i = 0, j = 0; j < len; i++) { ?
? ? ? ? ? ? int f = toDigit(data[j], j) << 4; ?
? ? ? ? ? ? j++; ?
? ? ? ? ? ? f = f | toDigit(data[j], j); ?
? ? ? ? ? ? j++; ?
? ? ? ? ? ? out[i] = (byte) (f & 0xFF); ?
? ? ? ? } ?
? ?
? ? ? ? return out; ?
? ? } ?
? ?
? ? /**?
? ? ?* 將十六進(jìn)制字符轉(zhuǎn)換成一個(gè)整數(shù)?
? ? ?*?
? ? ?* @param ch ? ?十六進(jìn)制char?
? ? ?* @param index 十六進(jìn)制字符在字符數(shù)組中的位置?
? ? ?* @return 一個(gè)整數(shù)?
? ? ?* @throws RuntimeException 當(dāng)ch不是一個(gè)合法的十六進(jìn)制字符時(shí),拋出運(yùn)行時(shí)異常?
? ? ?*/ ?
? ? protected static int toDigit(char ch, int index) { ?
? ? ? ? int digit = Character.digit(ch, 16); ?
? ? ? ? if (digit == -1) { ?
? ? ? ? ? ? throw new RuntimeException("Illegal hexadecimal character " + ch ?
? ? ? ? ? ? ? ? ? ? + " at index " + index); ?
? ? ? ? } ?
? ? ? ? return digit; ?
? ? } ?
? ?
? ? /**?
? ? ?* 數(shù)字字符串轉(zhuǎn)ASCII碼字符串?
? ? ?* ?
? ? ?* @param String?
? ? ?* ? ? ? ? ? ?字符串?
? ? ?* @return ASCII字符串?
? ? ?*/ ?
? ? public static String StringToAsciiString(String content) { ?
? ? ? ? String result = ""; ?
? ? ? ? int max = content.length(); ?
? ? ? ? for (int i = 0; i < max; i++) { ?
? ? ? ? ? ? char c = content.charAt(i); ?
? ? ? ? ? ? String b = Integer.toHexString(c); ?
? ? ? ? ? ? result = result + b; ?
? ? ? ? } ?
? ? ? ? return result; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 十六進(jìn)制轉(zhuǎn)字符串?
? ? ?* ?
? ? ?* @param hexString?
? ? ?* ? ? ? ? ? ?十六進(jìn)制字符串?
? ? ?* @param encodeType?
? ? ?* ? ? ? ? ? ?編碼類型4:Unicode,2:普通編碼?
? ? ?* @return 字符串?
? ? ?*/ ?
? ? public static String hexStringToString(String hexString, int encodeType) { ?
? ? ? ? String result = ""; ?
? ? ? ? int max = hexString.length() / encodeType; ?
? ? ? ? for (int i = 0; i < max; i++) { ?
? ? ? ? ? ? char c = (char) hexStringToAlgorism(hexString ?
? ? ? ? ? ? ? ? ? ? .substring(i * encodeType, (i + 1) * encodeType)); ?
? ? ? ? ? ? result += c; ?
? ? ? ? } ?
? ? ? ? return result; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 十六進(jìn)制字符串裝十進(jìn)制?
? ? ?* ?
? ? ?* @param hex?
? ? ?* ? ? ? ? ? ?十六進(jìn)制字符串?
? ? ?* @return 十進(jìn)制數(shù)值?
? ? ?*/ ?
? ? public static int hexStringToAlgorism(String hex) { ?
? ? ? ? hex = hex.toUpperCase(); ?
? ? ? ? int max = hex.length(); ?
? ? ? ? int result = 0; ?
? ? ? ? for (int i = max; i > 0; i--) { ?
? ? ? ? ? ? char c = hex.charAt(i - 1); ?
? ? ? ? ? ? int algorism = 0; ?
? ? ? ? ? ? if (c >= '0' && c <= '9') { ?
? ? ? ? ? ? ? ? algorism = c - '0'; ?
? ? ? ? ? ? } else { ?
? ? ? ? ? ? ? ? algorism = c - 55; ?
? ? ? ? ? ? } ?
? ? ? ? ? ? result += Math.pow(16, max - i) * algorism; ?
? ? ? ? } ?
? ? ? ? return result; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 十六轉(zhuǎn)二進(jìn)制?
? ? ?* ?
? ? ?* @param hex?
? ? ?* ? ? ? ? ? ?十六進(jìn)制字符串?
? ? ?* @return 二進(jìn)制字符串?
? ? ?*/ ?
? ? public static String hexStringToBinary(String hex) { ?
? ? ? ? hex = hex.toUpperCase(); ?
? ? ? ? String result = ""; ?
? ? ? ? int max = hex.length(); ?
? ? ? ? for (int i = 0; i < max; i++) { ?
? ? ? ? ? ? char c = hex.charAt(i); ?
? ? ? ? ? ? switch (c) { ?
? ? ? ? ? ? case '0': ?
? ? ? ? ? ? ? ? result += "0000"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case '1': ?
? ? ? ? ? ? ? ? result += "0001"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case '2': ?
? ? ? ? ? ? ? ? result += "0010"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case '3': ?
? ? ? ? ? ? ? ? result += "0011"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case '4': ?
? ? ? ? ? ? ? ? result += "0100"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case '5': ?
? ? ? ? ? ? ? ? result += "0101"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case '6': ?
? ? ? ? ? ? ? ? result += "0110"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case '7': ?
? ? ? ? ? ? ? ? result += "0111"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case '8': ?
? ? ? ? ? ? ? ? result += "1000"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case '9': ?
? ? ? ? ? ? ? ? result += "1001"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case 'A': ?
? ? ? ? ? ? ? ? result += "1010"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case 'B': ?
? ? ? ? ? ? ? ? result += "1011"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case 'C': ?
? ? ? ? ? ? ? ? result += "1100"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case 'D': ?
? ? ? ? ? ? ? ? result += "1101"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case 'E': ?
? ? ? ? ? ? ? ? result += "1110"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? case 'F': ?
? ? ? ? ? ? ? ? result += "1111"; ?
? ? ? ? ? ? ? ? break; ?
? ? ? ? ? ? } ?
? ? ? ? } ?
? ? ? ? return result; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* ASCII碼字符串轉(zhuǎn)數(shù)字字符串?
? ? ?* ?
? ? ?* @param String?
? ? ?* ? ? ? ? ? ?ASCII字符串?
? ? ?* @return 字符串?
? ? ?*/ ?
? ? public static String AsciiStringToString(String content) { ?
? ? ? ? String result = ""; ?
? ? ? ? int length = content.length() / 2; ?
? ? ? ? for (int i = 0; i < length; i++) { ?
? ? ? ? ? ? String c = content.substring(i * 2, i * 2 + 2); ?
? ? ? ? ? ? int a = hexStringToAlgorism(c); ?
? ? ? ? ? ? char b = (char) a; ?
? ? ? ? ? ? String d = String.valueOf(b); ?
? ? ? ? ? ? result += d; ?
? ? ? ? } ?
? ? ? ? return result; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 將十進(jìn)制轉(zhuǎn)換為指定長度的十六進(jìn)制字符串?
? ? ?* ?
? ? ?* @param algorism?
? ? ?* ? ? ? ? ? ?int 十進(jìn)制數(shù)字?
? ? ?* @param maxLength?
? ? ?* ? ? ? ? ? ?int 轉(zhuǎn)換后的十六進(jìn)制字符串長度?
? ? ?* @return String 轉(zhuǎn)換后的十六進(jìn)制字符串?
? ? ?*/ ?
? ? public static String algorismToHexString(int algorism, int maxLength) { ?
? ? ? ? String result = ""; ?
? ? ? ? result = Integer.toHexString(algorism); ?
??
? ? ? ? if (result.length() % 2 == 1) { ?
? ? ? ? ? ? result = "0" + result; ?
? ? ? ? } ?
? ? ? ? return patchHexString(result.toUpperCase(), maxLength); ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 字節(jié)數(shù)組轉(zhuǎn)為普通字符串(ASCII對應(yīng)的字符)?
? ? ?* ?
? ? ?* @param bytearray?
? ? ?* ? ? ? ? ? ?byte[]?
? ? ?* @return String?
? ? ?*/ ?
? ? public static String byteToString(byte[] bytearray) { ?
? ? ? ? String result = ""; ?
? ? ? ? char temp; ?
??
? ? ? ? int length = bytearray.length; ?
? ? ? ? for (int i = 0; i < length; i++) { ?
? ? ? ? ? ? temp = (char) bytearray[i]; ?
? ? ? ? ? ? result += temp; ?
? ? ? ? } ?
? ? ? ? return result; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 二進(jìn)制字符串轉(zhuǎn)十進(jìn)制?
? ? ?* ?
? ? ?* @param binary?
? ? ?* ? ? ? ? ? ?二進(jìn)制字符串?
? ? ?* @return 十進(jìn)制數(shù)值?
? ? ?*/ ?
? ? public static int binaryToAlgorism(String binary) { ?
? ? ? ? int max = binary.length(); ?
? ? ? ? int result = 0; ?
? ? ? ? for (int i = max; i > 0; i--) { ?
? ? ? ? ? ? char c = binary.charAt(i - 1); ?
? ? ? ? ? ? int algorism = c - '0'; ?
? ? ? ? ? ? result += Math.pow(2, max - i) * algorism; ?
? ? ? ? } ?
? ? ? ? return result; ?
? ? } ?
??
? ? /**?
? ? ?* 十進(jìn)制轉(zhuǎn)換為十六進(jìn)制字符串?
? ? ?* ?
? ? ?* @param algorism?
? ? ?* ? ? ? ? ? ?int 十進(jìn)制的數(shù)字?
? ? ?* @return String 對應(yīng)的十六進(jìn)制字符串?
? ? ?*/ ?
? ? public static String algorismToHEXString(int algorism) { ?
? ? ? ? String result = ""; ?
? ? ? ? result = Integer.toHexString(algorism); ?
??
? ? ? ? if (result.length() % 2 == 1) { ?
? ? ? ? ? ? result = "0" + result; ?
??
? ? ? ? } ?
? ? ? ? result = result.toUpperCase(); ?
??
? ? ? ? return result; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* HEX字符串前補(bǔ)0,主要用于長度位數(shù)不足。?
? ? ?* ?
? ? ?* @param str?
? ? ?* ? ? ? ? ? ?String 需要補(bǔ)充長度的十六進(jìn)制字符串?
? ? ?* @param maxLength?
? ? ?* ? ? ? ? ? ?int 補(bǔ)充后十六進(jìn)制字符串的長度?
? ? ?* @return 補(bǔ)充結(jié)果?
? ? ?*/ ?
? ? static public String patchHexString(String str, int maxLength) { ?
? ? ? ? String temp = ""; ?
? ? ? ? for (int i = 0; i < maxLength - str.length(); i++) { ?
? ? ? ? ? ? temp = "0" + temp; ?
? ? ? ? } ?
? ? ? ? str = (temp + str).substring(0, maxLength); ?
? ? ? ? return str; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 將一個(gè)字符串轉(zhuǎn)換為int?
? ? ?* ?
? ? ?* @param s?
? ? ?* ? ? ? ? ? ?String 要轉(zhuǎn)換的字符串?
? ? ?* @param defaultInt?
? ? ?* ? ? ? ? ? ?int 如果出現(xiàn)異常,默認(rèn)返回的數(shù)字?
? ? ?* @param radix?
? ? ?* ? ? ? ? ? ?int 要轉(zhuǎn)換的字符串是什么進(jìn)制的,如16 8 10.?
? ? ?* @return int 轉(zhuǎn)換后的數(shù)字?
? ? ?*/ ?
? ? public static int parseToInt(String s, int defaultInt, int radix) { ?
? ? ? ? int i = 0; ?
? ? ? ? try { ?
? ? ? ? ? ? i = Integer.parseInt(s, radix); ?
? ? ? ? } catch (NumberFormatException ex) { ?
? ? ? ? ? ? i = defaultInt; ?
? ? ? ? } ?
? ? ? ? return i; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 將一個(gè)十進(jìn)制形式的數(shù)字字符串轉(zhuǎn)換為int?
? ? ?* ?
? ? ?* @param s?
? ? ?* ? ? ? ? ? ?String 要轉(zhuǎn)換的字符串?
? ? ?* @param defaultInt?
? ? ?* ? ? ? ? ? ?int 如果出現(xiàn)異常,默認(rèn)返回的數(shù)字?
? ? ?* @return int 轉(zhuǎn)換后的數(shù)字?
? ? ?*/ ?
? ? public static int parseToInt(String s, int defaultInt) { ?
? ? ? ? int i = 0; ?
? ? ? ? try { ?
? ? ? ? ? ? i = Integer.parseInt(s); ?
? ? ? ? } catch (NumberFormatException ex) { ?
? ? ? ? ? ? i = defaultInt; ?
? ? ? ? } ?
? ? ? ? return i; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 十六進(jìn)制串轉(zhuǎn)化為byte數(shù)組?
? ? ?* ?
? ? ?* @return the array of byte?
? ? ?*/ ?
? ? public static byte[] hexToByte(String hex) ?
? ? ? ? ? ? throws IllegalArgumentException { ?
? ? ? ? if (hex.length() % 2 != 0) { ?
? ? ? ? ? ? throw new IllegalArgumentException(); ?
? ? ? ? } ?
? ? ? ? char[] arr = hex.toCharArray(); ?
? ? ? ? byte[] b = new byte[hex.length() / 2]; ?
? ? ? ? for (int i = 0, j = 0, l = hex.length(); i < l; i++, j++) { ?
? ? ? ? ? ? String swap = "" + arr[i++] + arr[i]; ?
? ? ? ? ? ? int byteint = Integer.parseInt(swap, 16) & 0xFF; ?
? ? ? ? ? ? b[j] = new Integer(byteint).byteValue(); ?
? ? ? ? } ?
? ? ? ? return b; ?
? ? } ?
? ? ??
? ? /**?
? ? ?* 字節(jié)數(shù)組轉(zhuǎn)換為十六進(jìn)制字符串?
? ? ?* ?
? ? ?* @param b?
? ? ?* ? ? ? ? ? ?byte[] 需要轉(zhuǎn)換的字節(jié)數(shù)組?
? ? ?* @return String 十六進(jìn)制字符串?
? ? ?*/ ?
? ? public static String byteToHex(byte b[]) { ?
? ? ? ? if (b == null) { ?
? ? ? ? ? ? throw new IllegalArgumentException( ?
? ? ? ? ? ? ? ? ? ? "Argument b ( byte array ) is null! "); ?
? ? ? ? } ?
? ? ? ? String hs = ""; ?
? ? ? ? String stmp = ""; ?
? ? ? ? for (int n = 0; n < b.length; n++) { ?
? ? ? ? ? ? stmp = Integer.toHexString(b[n] & 0xff); ?
? ? ? ? ? ? if (stmp.length() == 1) { ?
? ? ? ? ? ? ? ? hs = hs + "0" + stmp; ?
? ? ? ? ? ? } else { ?
? ? ? ? ? ? ? ? hs = hs + stmp; ?
? ? ? ? ? ? } ?
? ? ? ? } ?
? ? ? ? return hs.toUpperCase(); ?
? ? } ?
? ? ??
? ? public static byte[] subByte(byte[] input, int startIndex, int length) { ?
? ? ? ? byte[] bt = new byte[length]; ?
? ? ? ? for (int i = 0; i < length; i++) { ?
? ? ? ? ? ? bt[i] = input[i + startIndex]; ?
? ? ? ? } ?
? ? ? ? return bt; ?
? ? } ?
}
總結(jié)
- 上一篇: Linux中ssh登录跳过RSA key
- 下一篇: java 一对多关系修改,java –