decodeOutMaxSize
Pre-calculates and returns the maximum size of the output, after decoding would occur, for input that is not yet known (i.e. cannot be wrapped in DecoderInput, such as the contents of a File where only the file size is known) based off of the Config options set for the implementation.
decodeOutMaxSizeOrFail should always be preferred when:
Input data is known
Decoded output will be stored in a medium that has a maximum capacity of Int.MAX_VALUE, such as an Array.
Encoded data may contain spaces or new lines which are ignored if isLenient is set to true, or the encoding spec may allow for certain characters which are to be ignored (Base32 Crockford ignores hyphens). The output of this function can be incorrect in those instances and the actual decoded output size may be smaller than the value returned here.
This is a "best guess" and assumes that every character for encodedSize will be decoded.
Will always return a value greater than or equal to 0.
Parameters
The size of the encoded data being decoded.
See also
Throws
If encodedSize is negative, or the calculated size exceeded Long.MAX_VALUE.