วิธีง่ายๆในการดำเนินการนี้คือใช้การเข้ารหัสด้วยรหัสผ่านใน Java ช่วยให้คุณเข้ารหัสและถอดรหัสข้อความโดยใช้รหัสผ่าน
นี้โดยทั่วไปหมายถึงการเริ่มต้นjavax.crypto.Cipher
กับขั้นตอนวิธีการ"AES/CBC/PKCS5Padding"
และได้รับกุญแจจากjavax.crypto.SecretKeyFactory
กับ"PBKDF2WithHmacSHA512"
อัลกอริทึม
นี่คือตัวอย่างโค้ด (อัปเดตเพื่อแทนที่ตัวแปรที่ใช้ MD5 ที่มีความปลอดภัยน้อยกว่า):
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.security.AlgorithmParameters;
import java.security.GeneralSecurityException;
import java.security.NoSuchAlgorithmException;
import java.security.spec.InvalidKeySpecException;
import java.util.Base64;
import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.PBEKeySpec;
import javax.crypto.spec.SecretKeySpec;
public class ProtectedConfigFile {
public static void main(String[] args) throws Exception {
String password = System.getProperty("password");
if (password == null) {
throw new IllegalArgumentException("Run with -Dpassword=<password>");
}
// The salt (probably) can be stored along with the encrypted data
byte[] salt = new String("12345678").getBytes();
// Decreasing this speeds down startup time and can be useful during testing, but it also makes it easier for brute force attackers
int iterationCount = 40000;
// Other values give me java.security.InvalidKeyException: Illegal key size or default parameters
int keyLength = 128;
SecretKeySpec key = createSecretKey(password.toCharArray(),
salt, iterationCount, keyLength);
String originalPassword = "secret";
System.out.println("Original password: " + originalPassword);
String encryptedPassword = encrypt(originalPassword, key);
System.out.println("Encrypted password: " + encryptedPassword);
String decryptedPassword = decrypt(encryptedPassword, key);
System.out.println("Decrypted password: " + decryptedPassword);
}
private static SecretKeySpec createSecretKey(char[] password, byte[] salt, int iterationCount, int keyLength) throws NoSuchAlgorithmException, InvalidKeySpecException {
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("PBKDF2WithHmacSHA512");
PBEKeySpec keySpec = new PBEKeySpec(password, salt, iterationCount, keyLength);
SecretKey keyTmp = keyFactory.generateSecret(keySpec);
return new SecretKeySpec(keyTmp.getEncoded(), "AES");
}
private static String encrypt(String property, SecretKeySpec key) throws GeneralSecurityException, UnsupportedEncodingException {
Cipher pbeCipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
pbeCipher.init(Cipher.ENCRYPT_MODE, key);
AlgorithmParameters parameters = pbeCipher.getParameters();
IvParameterSpec ivParameterSpec = parameters.getParameterSpec(IvParameterSpec.class);
byte[] cryptoText = pbeCipher.doFinal(property.getBytes("UTF-8"));
byte[] iv = ivParameterSpec.getIV();
return base64Encode(iv) + ":" + base64Encode(cryptoText);
}
private static String base64Encode(byte[] bytes) {
return Base64.getEncoder().encodeToString(bytes);
}
private static String decrypt(String string, SecretKeySpec key) throws GeneralSecurityException, IOException {
String iv = string.split(":")[0];
String property = string.split(":")[1];
Cipher pbeCipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
pbeCipher.init(Cipher.DECRYPT_MODE, key, new IvParameterSpec(base64Decode(iv)));
return new String(pbeCipher.doFinal(base64Decode(property)), "UTF-8");
}
private static byte[] base64Decode(String property) throws IOException {
return Base64.getDecoder().decode(property);
}
}
ปัญหาหนึ่งยังคงอยู่: คุณควรเก็บรหัสผ่านที่ใช้เข้ารหัสรหัสผ่านไว้ที่ไหน? คุณสามารถจัดเก็บไว้ในซอร์สไฟล์และทำให้สับสน แต่ก็ไม่ยากเกินไปที่จะค้นหาอีกครั้ง หรือคุณสามารถให้เป็นคุณสมบัติของระบบเมื่อคุณเริ่มกระบวนการ Java ( -DpropertyProtectionPassword=...
)
ปัญหาเดิมยังคงอยู่หากคุณใช้ KeyStore ซึ่งได้รับการป้องกันด้วยรหัสผ่านเช่นกัน โดยทั่วไปคุณจะต้องมีรหัสผ่านหลักหนึ่งรหัสและมันค่อนข้างยากที่จะป้องกัน