Crockford
Base32 Crockford encoding/decoding in accordance with https://www.crockford.com/base32.html
e.g.
val base32Crockford = Base32Crockford {
isLenient = true
encodeToLowercase = false
hyphenInterval = 5
checkSymbol(symbol = '~')
}
val text = "Hello World!"
val bytes = text.encodeToByteArray()
val encoded = bytes.encodeToString(base32Crockford)
println(encoded) // 91JPR-V3F41-BPYWK-CCGGG~
// Alternatively, use the static implementaton instead of
// configuring your own settings.
val decoded = encoded.decodeToByteArray(Base32.Crockford).decodeToString()
assertEquals(text, decoded)
Content copied to clipboard
See also
Types
Link copied to clipboard
Doubles as a static implementation with default settings and a hyphenInterval of 4.
Link copied to clipboard
Configuration for Base32.Crockford encoding/decoding.
Functions
Link copied to clipboard
protected open override fun newDecoderFeedProtected(out: Decoder.OutFeed): Decoder.Feed<Base32.Crockford.Config>
Link copied to clipboard
protected open override fun newEncoderFeedProtected(out: Encoder.OutFeed): Encoder.Feed<Base32.Crockford.Config>