Searched refs:lineLength (Results 1 – 2 of 2) sorted by relevance
117 private final int lineLength; field in Base64200 public Base64(int lineLength) { in Base64() argument201 this(lineLength, CHUNK_SEPARATOR); in Base64()222 public Base64(int lineLength, byte[] lineSeparator) { in Base64() argument223 this.lineLength = lineLength; in Base64()226 if (lineLength > 0) { in Base64()364 if (lineLength > 0) { in encode()383 if (lineLength > 0 && lineLength <= currentLinePos) { in encode()
88 …public Base64OutputStream(OutputStream out, boolean doEncode, int lineLength, byte[] lineSeparator… in Base64OutputStream() argument91 this.base64 = new Base64(lineLength, lineSeparator); in Base64OutputStream()