Skip to content

Commit c6c5f11

Browse files
committed
Base64 constructor makes a better defensive copy of the line separator
array
1 parent e80ddb7 commit c6c5f11

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/changes/changes.xml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ The <action> type attribute can be add,update,fix,remove.
4949
<action type="fix" dev="ggregory" due-to="Gary Gregory">Optimize memory allocation in PhoneticEngine.</action>
5050
<action type="fix" dev="ggregory" due-to="Gary Gregory">BCodec and QCodec encode() methods throw UnsupportedCharsetException instead of EncoderException.</action>
5151
<action type="fix" dev="ggregory" due-to="Gary Gregory">Set Javadoc link to latest Java API LTS version.</action>
52+
<action type="fix" dev="ggregory" due-to="Gary Gregory">Base64 constructor makes a better defensive copy of the line separator array.</action>
5253
<!-- ADD -->
5354
<action type="add" dev="ggregory" due-to="Gary Gregory">Add override org.apache.commons.codec.language.bm.Rule.PhonemeExpr.size().</action>
5455
<action type="add" dev="ggregory" due-to="Chris Kocel, Gary Gregory">Add support for Base64 custom alphabets #266.</action>

src/main/java/org/apache/commons/codec/binary/Base64.java

+6-5
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ public Base64(final int lineLength, final byte[] lineSeparator, final boolean ur
661661
* 4). If lineLength &lt;= 0, then the output will not be divided into lines (chunks). Ignored when
662662
* decoding.
663663
* @param lineSeparator
664-
* Each line of encoded data will end with this sequence of bytes.
664+
* Each line of encoded data will end with this sequence of bytes; the constructor makes a defensive copy.
665665
* @param padding padding byte.
666666
* @param encodeTable
667667
* The manual encodeTable - a byte array of 64 chars.
@@ -683,13 +683,14 @@ private Base64(final int lineLength, final byte[] lineSeparator, final byte padd
683683
// TODO could be simplified if there is no requirement to reject invalid line sep when length <=0
684684
// @see test case Base64Test.testConstructors()
685685
if (lineSeparator != null) {
686-
if (containsAlphabetOrPad(lineSeparator)) {
687-
final String sep = StringUtils.newStringUtf8(lineSeparator);
686+
final byte[] lineSeparatorCopy = lineSeparator.clone();
687+
if (containsAlphabetOrPad(lineSeparatorCopy)) {
688+
final String sep = StringUtils.newStringUtf8(lineSeparatorCopy);
688689
throw new IllegalArgumentException("lineSeparator must not contain base64 characters: [" + sep + "]");
689690
}
690691
if (lineLength > 0) { // null line-sep forces no chunking rather than throwing IAE
691-
this.encodeSize = BYTES_PER_ENCODED_BLOCK + lineSeparator.length;
692-
this.lineSeparator = lineSeparator.clone();
692+
this.encodeSize = BYTES_PER_ENCODED_BLOCK + lineSeparatorCopy.length;
693+
this.lineSeparator = lineSeparatorCopy;
693694
} else {
694695
this.encodeSize = BYTES_PER_ENCODED_BLOCK;
695696
this.lineSeparator = null;

0 commit comments

Comments
 (0)