| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| src/ | 06-Sep-2024 | - | 2,512 | 1,405 | ||
| .cargo_vcs_info.json | D | 06-Sep-2024 | 97 | 6 | 6 | |
| Android.bp | D | 06-Sep-2024 | 692 | 26 | 24 | |
| Cargo.toml | D | 06-Sep-2024 | 1.1 KiB | 47 | 43 | |
| Cargo.toml.orig | D | 06-Sep-2024 | 683 | 24 | 21 | |
| LICENSE | D | 06-Sep-2024 | 1.1 KiB | 23 | 18 | |
| METADATA | D | 06-Sep-2024 | 672 | 21 | 19 | |
| MODULE_LICENSE_MIT | D | 06-Sep-2024 | 0 | |||
| OWNERS | D | 06-Sep-2024 | 45 | 2 | 1 | |
| README.md | D | 06-Sep-2024 | 2 KiB | 35 | 29 | |
| cargo_embargo.json | D | 06-Sep-2024 | 20 | 4 | 3 |
README.md
1[![CI Status][ci_badge]][ci] 2[![Coverage Status][coveralls_badge]][coveralls] 3 4This library provides the following common encodings: 5 6| Name | Description | 7| --- | --- | 8| `HEXLOWER` | lowercase hexadecimal | 9| `HEXLOWER_PERMISSIVE` | lowercase hexadecimal (case-insensitive decoding) | 10| `HEXUPPER` | uppercase hexadecimal | 11| `HEXUPPER_PERMISSIVE` | uppercase hexadecimal (case-insensitive decoding) | 12| `BASE32` | RFC4648 base32 | 13| `BASE32_NOPAD` | RFC4648 base32 (no padding) | 14| `BASE32_DNSSEC` | RFC5155 base32 | 15| `BASE32_DNSCURVE` | DNSCurve base32 | 16| `BASE32HEX` | RFC4648 base32hex | 17| `BASE32HEX_NOPAD` | RFC4648 base32hex (no padding) | 18| `BASE64` | RFC4648 base64 | 19| `BASE64_NOPAD` | RFC4648 base64 (no padding) | 20| `BASE64_MIME` | RFC2045-like base64 | 21| `BASE64URL` | RFC4648 base64url | 22| `BASE64URL_NOPAD` | RFC4648 base64url (no padding) | 23 24It also provides the possibility to define custom little-endian ASCII 25base-conversion encodings for bases of size 2, 4, 8, 16, 32, and 64 (for which 26all above use-cases are particular instances). 27 28See the [documentation] for more details. 29 30[ci]: https://github.com/ia0/data-encoding/actions/workflows/ci.yml 31[ci_badge]: https://github.com/ia0/data-encoding/actions/workflows/ci.yml/badge.svg 32[coveralls]: https://coveralls.io/github/ia0/data-encoding?branch=main 33[coveralls_badge]: https://coveralls.io/repos/github/ia0/data-encoding/badge.svg?branch=main 34[documentation]: https://docs.rs/data-encoding 35