1. การเข้ารหัสและถอดรหัส DES
แพ็คเกจ com.itjh.javaUtil; นำเข้า java.io.UnsupportedEncodingException; นำเข้า java.security.InvalidKeyException; นำเข้า java.security.NoSuchAlgorithmException; นำเข้า java.security.SecureRandom; นำเข้า java.security.spec.InvalidKeySpecException; นำเข้า javax.crypto.BadPaddingException ;นำเข้า javax.crypto.Cipher;นำเข้า javax.crypto.IllegalBlockSizeException;นำเข้า javax.crypto.KeyGenerator;นำเข้า javax.crypto.NoSuchPaddingException;นำเข้า javax.crypto.SecretKey;นำเข้า javax.crypto.SecretKeyFactory;นำเข้า javax.crypto.spec.DESKeySpec;/** * การเข้ารหัส DES และ ถอดรหัส * * @ผู้เขียน Song Lijun* @date 3 กรกฎาคม 2014*/public class DESUtil {/** Security key*/private String keyData = "ABCDEFGHIJKLMNOPQRSTWXYZabcdefghijklmnopqrstwxyz0123456789-_.";/** * ฟังก์ชั่น: การก่อสร้าง* * @ผู้เขียน Song Lijun * @วันที่ 3 กรกฎาคม 2014 */public DESUtil() {}/** * ฟังก์ชั่น: การก่อสร้าง* * @ผู้เขียน Song Lijun* @date 3 กรกฎาคม 2014* @param keyData * key */public DESUtil(String key) { this.keyData = key;}/** * ฟังก์ชั่น: การเข้ารหัส (UTF-8) * * @ผู้เขียน Song Lijun* @date 3 กรกฎาคม 2014* @param source * สตริงต้นทาง * @param charSet * การเข้ารหัส * @return String * @throws UnsupportedEncodingException * ข้อยกเว้นการเข้ารหัส */public String encrypt(String source) พ่น UnsupportedEncodingException {return encrypt(source, "UTF-8");}/ * * * * ฟังก์ชั่น: ถอดรหัส (UTF-8) * * @ผู้เขียน Song Lijun* @date 3 กรกฎาคม 2014* @param encryptedData * สตริงที่เข้ารหัส * @return String * @throws UnsupportedEncodingException * ข้อยกเว้นการเข้ารหัส */ การถอดรหัสสตริงสาธารณะ (String encryptedData) พ่น UnsupportedEncodingException {return decrypt (encryptedData, "UTF-8");}/** * ฟังก์ชั่น: การเข้ารหัส* * @ผู้เขียน Song Lijun* @date 3 กรกฎาคม 2014* @param source * สตริงต้นทาง * @param charSet * การเข้ารหัส * @return String * @throws UnsupportedEncodingException * ข้อยกเว้นการเข้ารหัส */การเข้ารหัสสตริงสาธารณะ (แหล่งสตริง, String charSet) พ่น UnsupportedEncodingException {การเข้ารหัสสตริง = null; ไบต์ [] ret = เข้ารหัส (source.getBytes ( charSet));เข้ารหัส = สตริงใหม่(Base64.encode(ret));ส่งคืนการเข้ารหัส;}/** * * ฟังก์ชั่น: การถอดรหัส * * @ผู้เขียน Song Lijun * @date 3 กรกฎาคม 2014 * @param encryptedData * สตริงที่เข้ารหัส * @param charSet * การเข้ารหัส * @return String * @throws UnsupportedEncodingException * ข้อยกเว้นการเข้ารหัส */ การถอดรหัสสตริงสาธารณะ (สตริงที่เข้ารหัสข้อมูล , String charSet) พ่น UnsupportedEncodingException {String descryptedData = null;byte[] ret = descrypt(Base64.decode(encryptedData.toCharArray()));descryptedData = new String(ret, charSet);return descryptedData;}/** * ข้อมูลที่เข้ารหัสจะใช้คีย์ที่สร้างขึ้นเพื่อเข้ารหัสข้อมูลต้นฉบับ * * @param primaryData * ข้อมูลต้นฉบับ * @return ไบต์[] * @ผู้เขียน Song Lijun* @date 3 กรกฎาคม 2014*/private ไบต์[] เข้ารหัส(ไบต์[] primaryData) {/** รับคีย์ความปลอดภัย*/ไบต์ rawKeyData[] = getKey();/** อัลกอริทึม DES ต้องการแหล่งที่มาของตัวเลขสุ่มที่เชื่อถือได้*/SecureRandom sr = new SecureRandom () ;/** สร้างวัตถุ DESKeySpec โดยใช้ข้อมูลคีย์ดั้งเดิม*/DESKeySpec dks = null; ลอง {dks = new DESKeySpec(keyData.getBytes());} catch (InvalidKeyException e) {e.printStackTrace();}/** สร้างโรงงานคีย์*/SecretKeyFactory keyFactory = null; ลอง {keyFactory = SecretKeyFactory.getInstance("DES");} catch (NoSuchAlgorithmException e) {e.printStackTrace ( );}/** ใช้โรงงานคีย์เพื่อแปลง DESKeySpec เป็นวัตถุ SecretKey*/SecretKey key = null;try {key = keyFactory.generateSecret(dks);} catch (InvalidKeySpecException e) {e.printStackTrace();}/** วัตถุ Cipher ดำเนินการเข้ารหัสให้เสร็จสิ้นจริง ๆ*/Cipher cipher = null; ลอง {cipher = Cipher .getInstance ("DES");} catch (NoSuchAlgorithmException e) {e.printStackTrace();} catch (NoSuchPaddingException e) {e.printStackTrace();}/** เตรียมใช้งานวัตถุ Cipher ด้วยคีย์*/ลอง {cipher.init(Cipher.ENCRYPT_MODE, key, sr);} catch (InvalidKeyException e) {e.printStackTrace();}/* * ดำเนินการเข้ารหัสอย่างเป็นทางการ*/byte encryptedData[] = null; ลอง {encryptedData = cipher.doFinal(primaryData);} catch (IllegalStateException e) {e.printStackTrace();} catch (IllegalBlockSizeException e) {e.printStackTrace();} catch (BadPaddingException e) {e.printStackTrace();}/** ส่งคืนข้อมูลที่เข้ารหัส*/ส่งคืน encryptedData;} /** * ถอดรหัสข้อมูลด้วยคีย์ * * @param encryptedData * ข้อมูลที่เข้ารหัส * @return byte[] * @author Song Lijun* @date 3 กรกฎาคม 2014*/private byte[] descrypt(byte[] encryptedData) {/** อัลกอริทึม DES ต้องการแหล่งตัวเลขสุ่มที่เชื่อถือได้*/SecureRandom sr = new SecureRandom();/* * รับ รหัสความปลอดภัย */byte rawKeyData[] = getKey();/** สร้างวัตถุ DESKeySpec โดยใช้ข้อมูลคีย์ดิบ */DESKeySpec dks = null; {dks = new DESKeySpec(keyData.getBytes());} catch (InvalidKeyException e) {e.printStackTrace();}/** สร้างโรงงานคีย์*/SecretKeyFactory keyFactory = null; ลอง {keyFactory = SecretKeyFactory.getInstance( " DES");} catch (NoSuchAlgorithmException e) {e.printStackTrace();}/** ใช้โรงงานคีย์เพื่อแปลง DESKeySpec ให้เป็นวัตถุ SecretKey */SecretKey key = null;try {key = keyFactory.generateSecret(dks);} catch (InvalidKeySpecException e) {e.printStackTrace();}/** วัตถุ Cipher เป็นจริง การดำเนินการเข้ารหัสเสร็จสมบูรณ์*/Cipher cipher = null; ลอง {cipher = Cipher.getInstance("DES");} catch (NoSuchAlgorithmException e) {e.printStackTrace();} catch (NoSuchPaddingException e) {e.printStackTrace();}/** เริ่มต้นวัตถุ Cipher ด้วยคีย์*/ลอง {cipher.init(Cipher.DECRYPT_MODE, key, sr);} catch (InvalidKeyException e) {e.printStackTrace();}/** การดำเนินการถอดรหัสอย่างเป็นทางการ*/byte decryptedData[] = null;try {decryptedData = cipher.doFinal(encryptedData);} catch (IllegalStateException e) {e.printStackTrace();} catch (IllegalBlockSizeException e) {e.printStackTrace();} catch (BadPaddingException e) {e.printStackTrace();} ส่งคืนข้อมูลถอดรหัส;}/** * วิธีการรับคีย์ความปลอดภัยนี้ไม่ถูกต้อง เนื่องจากในแต่ละครั้งที่สร้างคีย์ คีย์ที่ใช้สำหรับการถอดรหัสและการเข้ารหัสจะแตกต่างกัน ซึ่งทำให้เกิดข้อผิดพลาด เนื่องจากบล็อกสุดท้ายไม่ได้รับการเสริม * อย่างเหมาะสม * * * @return byte array* @author Song Lijun* @ วันที่ 3 กรกฎาคม 2014*/private byte[] getKey() {/** อัลกอริทึม DES ต้องการแหล่งตัวเลขสุ่มที่เชื่อถือได้*/SecureRandom sr = new SecureRandom();/** สร้างออบเจ็กต์ตัวสร้างคีย์สำหรับอัลกอริทึม DES ที่เราเลือก */KeyGenerator kg = null;try {kg = KeyGenerator.getInstance("DES");} catch (NoSuchAlgorithmException e) {e.printStackTrace();}kg.init ( sr);/** สร้างคลาสเครื่องมือคีย์*/คีย์ SecretKey = kg.generateKey();/** สร้างคีย์ไบต์อาร์เรย์*/ไบต์ rawKeyData[] = key.getEncoded();ส่งคืน rawKeyData;}}
2. การเข้ารหัสและถอดรหัส Base64
แพ็คเกจ com.itjh.javaUtil;นำเข้า java.io.*;/** * การเข้ารหัสและถอดรหัส Base64 * * @author Song Lijun* @date 3 กรกฎาคม 2014*/public class Base64 {public Base64() {}/** * Function: encoded string* * @author Song Lijun* @date 3 กรกฎาคม 2014* @param data * Source string* @return String */public static String encode(String data) {return new String(encode(data.getBytes()));}/** * ฟังก์ชั่น: ถอดรหัสสตริง* * @ผู้เขียน Song Lijun* @date 3 กรกฎาคม 2014* @param data * สตริงแหล่งที่มา* @return String */public static String decode(ข้อมูลสตริง) {return new String(decode(data .toCharArray( )));}/** * ฟังก์ชั่น: การเข้ารหัสไบต์[] * * @ผู้เขียน Song Lijun* @date 3 กรกฎาคม 2014* @param data * source* @return char[] */public char static[] encode(byte[] data) {char[] out = new char[((data.length + 2) / 3) * 4];สำหรับ (int i = 0, ดัชนี = 0; i < data.length; i += 3, ดัชนี += 4) {boolean quad = false; boolean trip = false; int val = (0xFF & (int) data [i]); val <<= 8;if ((i + 1) < data.length) {val |= (0xFF & (int) data[i + 1]);trip = true;}val <<= 8;if ((i + 2) < data.length) {val |= (0xFF & (int) data[i + 2]);quad = true;}out[index + 3] = ตัวอักษร[(quad ? (val & 0x3F) : 64)];val >>= 6;out[index + 2] = ตัวอักษร[(trip ? (val & 0x3F) : 64)];val >>= 6;out[index + 1] = ตัวอักษร[val & 0x3F ];val >>= 6;out[index + 0] = ตัวอักษร[val & 0x3F];}return out;}/** * ฟังก์ชั่น: ถอดรหัส* * @author Song Lijun* @วันที่ 3 กรกฎาคม 2014* @param data * อาร์เรย์อักขระที่เข้ารหัส* @return byte[] */public static byte[] decode(char[] data) {int tempLen = data.length;for ( int ix = 0; ix < data.length; ix++) {if ((ข้อมูล [ix] > 255) || รหัส [ข้อมูล [ix]] < 0) {--tempLen; // ละเว้นอักขระที่ไม่ถูกต้องและช่องว่างภายใน}}// คำนวณความยาวที่ต้องการ: // -- 3 ไบต์สำหรับทุกๆ 4 อักขระ base64 ที่ถูกต้อง// -- บวก 2 ไบต์หากมีอักขระ base64 เพิ่มเติม 3 ตัว/ / หรือบวก 1 ไบต์ถ้ามี 2 extra.int len = (tempLen / 4) * 3;if ((tempLen % 4) == 3) {len += 2;}if ((tempLen % 4) == 2) {len += 1;}byte[] out = new byte[len];int shift = 0; // # ของบิตส่วนเกินที่เก็บไว้ใน accumint accum = 0; // ดัชนี bitsint ส่วนเกิน = 0;// ตอนนี้เราผ่านอาร์เรย์ทั้งหมด (ไม่ได้ใช้ค่า 'tempLen') สำหรับ (int ix = 0; ix < data.length; ix++) {int value = (data[ix] > 255) ? -1 : codes[data[ix]];if (value >= 0) { // ข้ามไปที่ non-codeaccum <<= 6; // บิตเลื่อนขึ้น 6 แต่ละครั้ง += 6; // วนซ้ำโดยที่บิตใหม่ถูกใส่ไม่ถูกต้อง |= ค่า; // ที่ด้านล่างสุด (shift >= 8) { // เมื่อใดก็ตามที่มี 8 หรือมากกว่านั้น shift -= 8; เขียนออกมา (จาก ด้านบน เหลือ any[index++] = // ส่วนเกินที่ด้านล่างสำหรับการวนซ้ำครั้งถัดไป (ไบต์) ((สะสม >> shift) & 0xff);}}}// หากยังมีบางอย่างผิดปกติเราก็ต้องโยนทิ้ง now!if (index != out.length) {throw new Error("Miscalculated data length (wrote " + index+ " แทน " + out.length + ")");} return out;}/** * ฟังก์ชัน: เข้ารหัสไฟล์* * @ผู้เขียน Song Lijun* @date 3 กรกฎาคม 2014* @param file * Source file*/public static void encode(File file) ส่ง IOException {if (!file.exists()) {System.exists()) (0);}else {ไบต์ [] ถอดรหัส = readBytes (ไฟล์); ถ่าน [] เข้ารหัส = เข้ารหัส (ถอดรหัส); writeChars (ไฟล์ เข้ารหัส);} ไฟล์ = null;}/** * ฟังก์ชั่น: ถอดรหัสไฟล์ * * @ผู้เขียน Song Lijun* @date 3 กรกฎาคม 2014* @param file * Source file* @throws IOException */public static void decode(File file) พ่น IOException {if (!file.exists()) {System.exists()) (0);} else {char [] เข้ารหัส = readChars (ไฟล์); ไบต์ [] ถอดรหัส = ถอดรหัส (เข้ารหัส); writeBytes (ไฟล์, decoded);}file = null;}//// อักขระโค้ดสำหรับค่า 0..63//private static char[] letter = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".toCharArray();//// ตารางการค้นหาสำหรับการแปลง อักขระ base64 ที่จะให้ค่าในช่วง 0..63//รหัสไบต์คงที่ส่วนตัว [] = ไบต์ใหม่ [256]; คงที่ {สำหรับ (int i = 0; i < 256; i++) {รหัส [i] = -1;// LoggerUtil.debug (i + "&" + รหัส [i] + " ");} สำหรับ (int i = 'A'; i <= 'Z'; i++) {รหัส [i] = (ไบต์) (i - 'A');// LoggerUtil.debug(i + "&" + รหัส [i] + " ");} สำหรับ (int i = 'a'; i <= 'z'; i++) {รหัส [i] = (ไบต์) (26 + i - 'a');// LoggerUtil.debug (i + "&" + รหัส [i] + " ");} สำหรับ (int i = '0'; i <= '9 '; ฉัน++) {รหัส [i] = (ไบต์) (52 + i - '0'); // LoggerUtil.debug (i + "&" + รหัส [i] + " ");} รหัส ['+'] = 62; รหัส ['/'] = 63;} ไบต์ส่วนตัวแบบคงที่ [] readBytes (ไฟล์ไฟล์) พ่น IOException {ByteArrayOutputStream baos = ใหม่ ByteArrayOutputStream (); ไบต์ [] b = null; InputStream fis = null; InputStream คือ = null; ลอง {fis = new FileInputStream (ไฟล์); is = new BufferedInputStream (fis); int count = 0; ไบต์ [] buf = ใหม่ ไบต์ [16384]; ในขณะที่ ((นับ = is.read (buf)) ! = -1) {ถ้า (นับ > 0) {baos.write(buf, 0, count);}}b = baos.toByteArray();} ในที่สุด {try {if (fis != null)fis.close();if (is != null)is.close ();if (baos != null)baos.close();} catch (ข้อยกเว้น e) {System.out.println(e);}}return b;}อักขระคงที่ส่วนตัว[] readChars (ไฟล์ไฟล์) พ่น IOException {CharArrayWriter caw = new CharArrayWriter (); Reader fr = null; Reader in = null; ลอง {fr = new FileReader (ไฟล์); in = new BufferedReader (fr); int count = 0; char [] buf = ถ่านใหม่ [16384]; ในขณะที่ ((count = in.read (buf)) != -1) {if (นับ > 0) {caw.write(buf, 0, count);}}} ในที่สุด {try {if (caw != null)caw.close();if (in != null)in.close();if (fr != null)fr.close();} catch (ข้อยกเว้น e) {System.out.println(e);}}return caw.toCharArray();} ส่วนตัว โมฆะคงที่ writeBytes (ไฟล์ไฟล์ ข้อมูลไบต์ []) พ่น IOException {OutputStream fos = null;OutputStream os = null; ลอง {fos = new FileOutputStream (ไฟล์); os = new BufferedOutputStream (fos); os.write (data);} ในที่สุด {try {if ( os != null)os.close();if (fos != null)fos.close();} catch (ข้อยกเว้น e) {System.out.println(e);}}}private static void writeChars(ไฟล์ไฟล์, char[] data) พ่น IOException {Writer fos = null;Writer os = null;try {fos = new FileWriter(file);os = new BufferedWriter(fos);os.write(data);} ในที่สุด {try {if (os != null)os.close();if (fos != null) fos.close ();} catch (ข้อยกเว้น e) {e.printStackTrace ();}}} // /////////////////////////// / ///////////////////////////// สิ้นสุดโค้ดทดสอบ// -
PS: เกี่ยวกับเทคโนโลยีการเข้ารหัส ไซต์นี้ยังมีเครื่องมือการเข้ารหัสต่อไปนี้เพื่อเป็นข้อมูลอ้างอิงของคุณ:
เครื่องมือเข้ารหัสและถอดรหัส BASE64: http://tools.VeVB.COm/transcoding/base64
เครื่องมือเข้ารหัสออนไลน์ MD5: http://tools.VeVB.COm/password/CreateMD5Password
เครื่องมือเข้ารหัส / ถอดรหัส Escape: http://tools.VeVB.COm/password/escapepwd
เครื่องมือเข้ารหัส SHA1 ออนไลน์: http://tools.VeVB.COm/password/sha1encode
ลิงค์สั้น (URL แบบสั้น) เครื่องมือสร้างออนไลน์: http://tools.VeVB.COm/password/dwzcreate
ลิงค์สั้น (URL สั้น) เครื่องมือฟื้นฟูออนไลน์: http://tools.VeVB.COm/password/unshorturl
เครื่องมือสร้างรหัสผ่านที่รัดกุม: http://tools.VeVB.COm/password/CreateStrongPassword