(String sixkey)
| 12 | private static final String[] HEX_ARRAY = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"}; |
| 13 | |
| 14 | public static String getKey(String sixkey) { |
| 15 | String res1 = encrypt(sixkey); |
| 16 | return res1 + POSTFIX; |
| 17 | } |
| 18 | |
| 19 | private static int strToInt(String t) { |
| 20 | char[] chs = t.toCharArray(); |