Skip to content

Commit

Permalink
Update AES algorithm names
Browse files Browse the repository at this point in the history
  • Loading branch information
Aizistral committed Oct 29, 2024
1 parent b630c1f commit e3a0dbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public abstract class AESEncryption extends Encryption {
private final boolean requiresIV;

protected AESEncryption(String mode, String padding, boolean requiresIV) {
super("aes_" + mode.toLowerCase() + "_base64", "AES/" + mode + "+Base64");
super("aes_" + mode.toLowerCase() + "_base64", "AES/" + mode + "+Base64R");
this.mode = mode;
this.padding = padding;
this.requiresIV = requiresIV;
Expand Down

0 comments on commit e3a0dbd

Please sign in to comment.