Open GoogleCodeExporter opened 9 years ago
Would like to request that MirthMail be removed from the subject, apologies, I
wrote this too quickly.
Original comment by marc...@mirthcorp.com
on 13 Dec 2013 at 5:57
Looking at:
org.nhindirect.stagent.cryptography.SMIMECryptographerImpl.createSignatureEntity
(byte[], Collection<X509Certificate>)
I am seeing this on line 584:
String encodedSig = Base64.encodeBase64String(signedData.getEncoded());
Pretty sure that needs to be:
byte[] binaryData = signedData.getEncoded();
String encodedSig = StringUtils.newStringUtf8(Base64.encodeBase64(binaryData,
true));
Attaching a potential patch for Agent.
Original comment by marc...@mirthcorp.com
on 16 Dec 2013 at 7:40
Attachments:
Pretty sure it is 76 chars not 75.
Original comment by marc...@mirthcorp.com
on 16 Dec 2013 at 8:08
Has there been any status update to this?
Original comment by djunt...@mieweb.com
on 24 Oct 2014 at 3:04
Yes, I just added this fix today as part of the connect-a-thon. It will go
into agent-2.0.12 and go out into the Java RI 4.0 release (to be released in
Feb 2015).
Original comment by gm2...@cerner.com
on 22 Jan 2015 at 6:37
Original issue reported on code.google.com by
marc...@mirthcorp.com
on 12 Dec 2013 at 11:33