attempt to use SIV

This commit is contained in:
Govindass 2020-06-08 11:16:16 +03:00
parent fc72c698f4
commit 691b47c558

View File

@ -69,7 +69,7 @@ public class AddonPlugin extends JavaPlugin {
encryptionCipher = null; encryptionCipher = null;
try { try {
encryptionCipher = Cipher.getInstance("AES/ECB/PKCS5Padding"); encryptionCipher = Cipher.getInstance("AES/SIV/PKCS5Padding");
} catch (NoSuchAlgorithmException e) { } catch (NoSuchAlgorithmException e) {
e.printStackTrace(); e.printStackTrace();
} catch (NoSuchPaddingException e) { } catch (NoSuchPaddingException e) {
@ -82,7 +82,7 @@ public class AddonPlugin extends JavaPlugin {
} }
decryptionCipher = null; decryptionCipher = null;
try { try {
decryptionCipher = Cipher.getInstance("AES/ECB/PKCS5Padding"); decryptionCipher = Cipher.getInstance("AES/SIV/PKCS5Padding");
} catch (NoSuchAlgorithmException e) { } catch (NoSuchAlgorithmException e) {
e.printStackTrace(); e.printStackTrace();
} catch (NoSuchPaddingException e) { } catch (NoSuchPaddingException e) {