1.3.0 release #7

Merged
Infendro merged 13 commits from develop into main 2026-01-29 16:46:03 +00:00
Showing only changes of commit e08cbb0fa9 - Show all commits

View File

@@ -5,11 +5,15 @@
Supported encodings:
- Base2 (binary)
- Base8 (octal)
- Base16 (hexadecimal)
- Base10 (decimal)
- Base16 (hexadecimal, uppercase/lowercase)
- Base32
- Base36
- Base45
- Base56
- Base58
- Base62
- Base64
- Base64 (standard/URL)
## Installation
@@ -35,6 +39,6 @@ fun main() {
// encode the string with the desired encoding
val encoded = Base16.encode(test).decodeToString()
println(encoded) // 48656c6c6f20576f726c6421
println(encoded) // 48656C6C6F20576F726C6421
}
```