#base64 #byte-array #aliri #buffer #serialization #utilities

aliri_base64

Wrappers that make debugging and using byte arrays a bit nicer

8 releases

0.1.7 May 27, 2023
0.1.6 Jun 15, 2022
0.1.5 Feb 21, 2022
0.1.4 May 13, 2021
0.1.3 Apr 29, 2021

#1813 in Encoding

Download history 367/week @ 2023-12-02 754/week @ 2023-12-09 551/week @ 2023-12-16 401/week @ 2023-12-23 287/week @ 2023-12-30 10340/week @ 2024-01-06 18082/week @ 2024-01-13 16244/week @ 2024-01-20 21276/week @ 2024-01-27 30157/week @ 2024-02-03 23216/week @ 2024-02-10 35186/week @ 2024-02-17 34914/week @ 2024-02-24 31371/week @ 2024-03-02 40470/week @ 2024-03-09 32613/week @ 2024-03-16

146,573 downloads per month
Used in 8 crates (4 directly)

MIT/Apache

23KB
284 lines

Aliri Base64

Esperanto for "access"

CI

Aliri is a family of crates intended to help build access control, particularly of web APIs, where a token is the primary means of providing access.

Features

The aliri_base64 crate provides some utilities for more easily working with byte arrays and buffers that need to be serialized using Base64 encoding. This is particularly necessary for many of the types that aliri works with, but may also be of use to others as well.

The underlying encoding/decoding mechanism is provided by the base64 crate.

Supported encodings

Base64 and Base64Ref wrap owned and borrowed byte arrays that must be serialized in the standard Base64 encoding with padding.

Base64Url and Base64UrlRef wrap owned and borrowed byte arrays that must be serialized in the URL-safe Base64 encoding with no padding.

Additional encodings may be added in the future, but these were the two primary encodings required to support my base set of use cases.

Unsafe code

Aliri Base64 makes use of two lines of unsafe code. This unsafe code is limited to the functions that allow the Base64Ref and Base64UrlRef to wrap borrowed byte slices. This reinterpretation is safe because these types are transparent wrappers around [u8], use #[repr(transparent)], and thus share the exact same representation as the underlying slice. This is currently necessary as there is currently no way to transmute equivalent representations of dynamically sized values in safe Rust.

For the above reason, this crate uses #![deny(unsafe_code)] rather than #![forbid(unsafe_code)]. The only #![allow(unsafe_code)] in the crate can be located in the private b64_builder! macro.

Note that, because cargo-geiger has difficulty parsing out unsafe usage from within macros, that tool won't report these crates as "radioactive", but probably should. Do your due diligence.

Dependencies

~190–395KB