You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -314,7 +346,9 @@ public Base32(final boolean useHex, final byte padding) {
314
346
* </p>
315
347
*
316
348
* @param pad byte used as padding byte.
349
+
* @deprecated Use {@link #builder()} and {@link Builder}.
317
350
*/
351
+
@Deprecated
318
352
publicBase32(finalbytepad) {
319
353
this(false, pad);
320
354
}
@@ -327,7 +361,9 @@ public Base32(final byte pad) {
327
361
*
328
362
* @param lineLength Each line of encoded data will be at most of the given length (rounded down to the nearest multiple of 8). If lineLength <= 0, then
329
363
* the output will not be divided into lines (chunks). Ignored when decoding.
364
+
* @deprecated Use {@link #builder()} and {@link Builder}.
330
365
*/
366
+
@Deprecated
331
367
publicBase32(finalintlineLength) {
332
368
this(lineLength, CHUNK_SEPARATOR);
333
369
}
@@ -345,7 +381,9 @@ public Base32(final int lineLength) {
345
381
* then the output will not be divided into lines (chunks). Ignored when decoding.
346
382
* @param lineSeparator Each line of encoded data will end with this sequence of bytes.
347
383
* @throws IllegalArgumentException Thrown when the {@code lineSeparator} contains Base32 characters.
384
+
* @deprecated Use {@link #builder()} and {@link Builder}.
@@ -370,7 +408,9 @@ public Base32(final int lineLength, final byte[] lineSeparator) {
370
408
* Alphabet</a></li>
371
409
* </ul>
372
410
* @throws IllegalArgumentException Thrown when the {@code lineSeparator} contains Base32 characters. Or the lineLength > 0 and lineSeparator is null.
411
+
* @deprecated Use {@link #builder()} and {@link Builder}.
@@ -396,7 +436,9 @@ public Base32(final int lineLength, final byte[] lineSeparator, final boolean us
396
436
* </ul>
397
437
* @param padding padding byte.
398
438
* @throws IllegalArgumentException Thrown when the {@code lineSeparator} contains Base32 characters. Or the lineLength > 0 and lineSeparator is null.
439
+
* @deprecated Use {@link #builder()} and {@link Builder}.
@@ -424,7 +466,9 @@ public Base32(final int lineLength, final byte[] lineSeparator, final boolean us
424
466
* @param decodingPolicy The decoding policy.
425
467
* @throws IllegalArgumentException Thrown when the {@code lineSeparator} contains Base32 characters. Or the lineLength > 0 and lineSeparator is null.
426
468
* @since 1.15
469
+
* @deprecated Use {@link #builder()} and {@link Builder}.
0 commit comments