lineBreak
DEFAULT: 0 (i.e. disabled)
If greater than 0, when interval number of encoded characters have been output, the next encoded character will be preceded with the new line character \n. This is non-compliant with RFC 4648.
A great value is 64, and is what Hex.Companion.config uses.
NOTE: This setting is ignored if isLenient is set to false.
e.g.
isLenient(enable = true)
lineBreak(interval = 0)
// 91IMOR3F41BMUSJCCGGG====
isLenient(enable = true)
lineBreak(interval = 16)
// 91IMOR3F41BMUSJC
// CGGG====
isLenient(enable = false)
lineBreak(interval = 16)
// 91IMOR3F41BMUSJCCGGG====Content copied to clipboard