public final class Base32Support extends Object
Base32.
This helper class specifically addresses that waste of the Apache Codec encode/decode static methods creating new
instances of the Base32 for every operation. It also provides the helper method to produce both chunked and
unchunked encoded content as strings.
This is present solely to avoid requiring a bump to java-support for this patch version.
| Modifier and Type | Field and Description |
|---|---|
static boolean |
CHUNKED
Chunk the encoded data into 76-character lines broken by CRLF characters.
|
private static org.apache.commons.codec.binary.Base32 |
CHUNKED_ENCODER
Encoder used to produce chunked output.
|
static boolean |
UNCHUNKED
Do not chunk encoded data.
|
private static org.apache.commons.codec.binary.Base32 |
UNCHUNKED_ENCODER
Encoder used to produce unchunked output.
|
| Modifier | Constructor and Description |
|---|---|
private |
Base32Support()
Constructor.
|
public static final boolean CHUNKED
public static final boolean UNCHUNKED
private static final org.apache.commons.codec.binary.Base32 CHUNKED_ENCODER
private static final org.apache.commons.codec.binary.Base32 UNCHUNKED_ENCODER
Copyright © 1999–2017 Shibboleth Consortium. All rights reserved.