5 stable releases

2.0.0 Jul 29, 2023
1.2.1 Jul 26, 2023
1.1.1 Oct 3, 2022
1.1.0 Feb 13, 2022
1.0.1 Feb 10, 2022

#642 in Encoding

Download history 1321/week @ 2023-12-13 1253/week @ 2023-12-20 769/week @ 2023-12-27 552/week @ 2024-01-03 283/week @ 2024-01-10 672/week @ 2024-01-17 786/week @ 2024-01-24 1092/week @ 2024-01-31 751/week @ 2024-02-07 793/week @ 2024-02-14 1347/week @ 2024-02-21 1131/week @ 2024-02-28 1974/week @ 2024-03-06 1872/week @ 2024-03-13 1115/week @ 2024-03-20 1378/week @ 2024-03-27

6,616 downloads per month
Used in 26 crates (10 directly)

MPL-2.0-no-copyleft-exception

13KB
184 lines

base85

A library for Base85 encoding as described in RFC1924 and released under the Mozilla Public License 2.0.

Description

Several variants of Base85 encoding exist. The most popular variant is often known also as ascii85 and is best known for use in Adobe products. This is not that algorithm.

The variant implemented in RFC 1924 was originally intended for encoding IPv6 addresses. It utilizes the same concepts as other versions, but uses a character set which is friendly toward embedding in source code without the need for escaping. During decoding ASCII whitespace (\n, \r, \t, space) is ignored. A base85-encoded string is 25% larger than the original binary data, which is more efficient than the more-common base64 algorithm (33%). This encoding pairs very well with JSON, yielding lower overhead and needing no character escapes.

Usage

Although this code is my first real Rust code, the code is well-tested and the API is simple: encode() turns a slice of bytes into a String and decode() turns a string reference into a Vector of bytes (u8). Both calls work completely within RAM, so processing huge files is probably not a good idea.

Contributions

I've been coding for a while, but I'm still a beginner at Rust. Suggestions and contributions are always welcome. although a mirror repository can be found on GitHub for historical reasons, the official repository for this crate is at GitLab. It would be greatly appreciated to submit all issues and PRs to that location.

Dependencies

~305–760KB
~18K SLoC