Compare commits

...

2 Commits

Author SHA1 Message Date
841bdfa21e Merge pull request '1.3.0 release' (#7) from develop into main
All checks were successful
/ publish (push) Successful in 4m1s
Reviewed-on: Infendro/encoding-kt#7
2026-01-29 16:46:03 +00:00
e08cbb0fa9 fix README
All checks were successful
/ test (pull_request) Successful in 45s
2026-01-21 22:09:31 +01:00

View File

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