Шифрование Java: загрузка симметричного ключа из файла
Так недавно я начал работать с шифрованием. У меня есть функционирующий класс асимметричного шифрования, но мне также нужен класс симметричного ключа. Хотя большинство аспектов класса симметричного ключа работают, загрузка ключа из его закодированных байтов - нет. Ниже приведен класс симметричного ключа. Я отметил два конструктора, которые не работают.
public class PlasmaSymmetricEncrypter {
public static String DESEDE_ALGORITHM = "DESede";
public static String AES_ALGORITHM = "AES";
private Key key;
private String algorithm;
public PlasmaSymmetricEncrypter(Key key) {
this.key = key;
this.algorithm = key.getAlgorithm();
}
public PlasmaSymmetricEncrypter(File keyFile, String algorithm) throws IOException, NoSuchAlgorithmException { //This constructor is not working
this.algorithm = algorithm;
if(!keyFile.exists()) {
this.genKey(keyFile);
}
Key key = new SecretKeySpec(Files.readAllBytes(keyFile.toPath()), algorithm);
this.key = key;
}
public PlasmaSymmetricEncrypter(byte[] key, String algorithm) { //This constructor is not working
this(new SecretKeySpec(key, algorithm));
}
private void genKey(File file) throws NoSuchAlgorithmException, IOException {
KeyGenerator generator = KeyGenerator.getInstance(this.algorithm);
this.key = generator.generateKey();
file.delete();
if(file.getParentFile() != null) {
file.getParentFile().mkdirs();
}
file.createNewFile();
FileOutputStream stream = new FileOutputStream(file);
stream.write(this.getEncodedKey());
stream.close();
}
public byte[] getEncodedKey() {
return this.key.getEncoded();
}
public byte[] encrypt(byte[] bytes) throws BadPaddingException, IllegalBlockSizeException, InvalidKeyException, NoSuchPaddingException, NoSuchAlgorithmException {
Cipher cipher = Cipher.getInstance(this.algorithm);
cipher.init(Cipher.ENCRYPT_MODE, this.key);
return cipher.doFinal(bytes);
}
public byte[] encrypt(String text) throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException {
return this.encrypt(text.getBytes(StandardCharsets.UTF_8));
}
public String decrypt(byte[] bytes) throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException {
Cipher cipher = Cipher.getInstance(this.algorithm);
cipher.init(Cipher.DECRYPT_MODE, this.key);
return new String(cipher.doFinal(bytes), StandardCharsets.UTF_8);
}
public String decrypt(String bytes) throws IllegalBlockSizeException, InvalidKeyException, BadPaddingException, NoSuchAlgorithmException, NoSuchPaddingException {
return this.decrypt(bytes.getBytes(StandardCharsets.ISO_8859_1));
}
public String encryptToString(String text) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException {
return new String(this.encrypt(text), StandardCharsets.ISO_8859_1);
}
}
Запуск со следующим тестовым кодом создает java.security.InvalidKeyException
:
PlasmaAsymmetricEncrypter asymmetricEncrypter = new PlasmaAsymmetricEncrypter(new File("private.key"), new File("public.key"), PlasmaAsymmetricEncrypter.RSA_ALGORITHM);
PlasmaSymmetricEncrypter symmetricEncrypter = new PlasmaSymmetricEncrypter(new File("secret.key"), PlasmaSymmetricEncrypter.AES_ALGORITHM);
String encrypt = "hello world";
byte[] encryptedKey = asymmetricEncrypter.encryptPrivate(symmetricEncrypter.getEncodedKey());
PlasmaSymmetricEncrypter encrypter = new PlasmaSymmetricEncrypter(asymmetricEncrypter.decryptPublic(encryptedKey), PlasmaAsymmetricEncrypter.RSA_ALGORITHM);
System.out.println(encrypter.decrypt(symmetricEncrypter.encrypt(encrypt)));
Исключение:
Exception in thread "main" java.security.InvalidKeyException: No installed provider supports this key: javax.crypto.spec.SecretKeySpec
at javax.crypto.Cipher.chooseProvider(Cipher.java:893)
at javax.crypto.Cipher.init(Cipher.java:1249)
at javax.crypto.Cipher.init(Cipher.java:1186)
at com.gmail.socraticphoenix.plasma.file.encryption.PlasmaSymmetricEncrypter.decrypt(PlasmaSymmetricEncrypter.java:96)
at com.gmail.socraticphoenix.plasma.Test.main(Test.java:38)
Тест 38 является System.out.println
вызов, и PlasmaSymmetricEncrypter 96 здесь
Весь мой код на github
Редактирование для ясности: 1. Пожалуйста, игнорируйте методы шифрования в строку, они будут заменены на кодировку base64, как только я решу эту проблему. 2. Ошибка не возникает в самом конструкторе, она выдается только когда я пытаюсь получить шифр для восстановленного ключа.
1 ответ
Итак, я был тупым.
В моем тестовом коде я создавал SymmetricEncrypter следующим образом:
PlasmaSymmetricEncrypter encrypter = new PlasmaSymmetricEncrypter(asymmetricEncrypter.decryptPublic(encryptedKey), PlasmaAsymmetricEncrypter.RSA_ALGORITHM);
Использование алгоритма RSA, который, конечно, не работает для симметричных ключей.
Спасибо тем, кто пытался помочь, но в итоге провалился мой тестовый код, а не класс.