My remote partner is configured to use AES-128 for encryption.
However, when I create a datasheet for that partner, the column "Your parameters" contains RC2-128 for encryption.
I think the error is the following line in DatasheetBuilder.java:
String defaultEncryptionRemote = this.remotePartner == null
? this.rbMessage.getResourceString("encryption." + AS2Message.ENCRYPTION_3DES)
: this.rbMessage.getResourceString("encryption." + this.remotePartner.getSignType());
I guess it was meant to be:
String defaultEncryptionRemote = this.remotePartner == null
? this.rbMessage.getResourceString("encryption." + AS2Message.ENCRYPTION_3DES)
: this.rbMessage.getResourceString("encryption." + this.remotePartner.getEncryptionType());
AS2 opensource build 55
Comments
Bandoleri, great, thank you…
Submitted by service on Thu, 05/16/2019 - 14:30
Bandoleri,
great, thank you very much for your feedback! We fixed this for the next version.
Regards