base64id

Crates.iobase64id
lib.rsbase64id
version0.4.1
sourcesrc
created_at2022-10-04 07:37:21.991755
updated_at2024-11-09 06:15:36.075298
descriptionEfficiently represent 64, 32 and 16 bit integers as base64url strings
homepage
repositoryhttps://github.com/shauncksm/base64id-rs
max_upload_size
id679669
size42,591
Shaun Priestley (shauncksm)

documentation

README

base64id-rs

crates.io official website docs.rs Rust Validation license

A pure rust library for representing 64, 32 and 16 bit integers as base64url encoded strings.

base64url    i64                   u64
-----------  --------------------  --------------------
B21CkMCtWZA    535157120202267024    535157120202267024
fHH_W21Typg   8967229101212682904   8967229101212682904
kjsG-f3NhxI  -7909720649771415790  10537023423938135826
jHamKFSl5oM  -8325284168998721917  10121459904710829699

An integer is efficiently stored and manipulated in memory. However the integer cannot be sent to/from a web client in a url safe manor, without some encoding scheme. This library allows you to encode the integer to/from an base64url character string.

For a video of the underlying concept in action, see here.

Benefits

  • Integers are made url safe
  • Encoded integers use fewer bytes as compared to hex or decimal encoding
  • Tests for RFC 4648 compliance where implemented from the start and across the entire libary
  • base64id uses #![no_std] with no heap allocation required
  • base64id uses #![forbid(unsafe_code)]

Website

You can use base64id.cksm.cc to test, debug and generate random base64id strings instantly.

All conversions are run locally in the browser using JavaScript and Web Assembly, with no server backend needed. You can view the GitHub repo for this website here.

Motivation

I've used this concept a number of times in personal and work projects as I find it very useful. The problem is I've had to reimplement the functionality everytime.

The motivation for this library was to design and implement the core concept once, while paying attention to metrics such as performance, correctness and compatability.

Installation

Add the following to your Cargo.toml file

[dependencies]
base64id = "0.4"

Migrating From v0.3

For users of v0.3.x or less migrating to v0.4.0 or greater, please see the migration guide.

Usage

You start by creating your own tuple struct with a single i64, i32 or i16. Then apply the Base64Id derive macro to your struct.

use base64id::Base64Id;

#[derive(Base64Id)]
struct MyId(i64);

Encoding

You can convert signed or unsigned integers to a Base64Id struct as follows:

use base64id::Base64Id;

#[derive(Base64Id)]
struct MyId(i64);

fn main() {
    let int: i64 = 1;
    let id = MyId::from(int);

    println!("{id}"); // AAAAAAAAAAE
}

Decoding

You can use FromStr and From<{integer}> to convert a String to a Base64Id struct and then into an i64 as follows:

use base64id::{Base64Id, Error};
use std::str::FromStr;

#[derive(Base64Id)]
struct MyId(i64);

fn main() -> Result<(), Error> {
    let id_str = MyId::from_str("PDFehCFVGqA")?;
    let id_int = i64::from(id_str);

    println!("{}", id_int); // 4337351837722417824

    Ok(())
}

Serde

Support for Serde is possible through the use of the base64id derive macro helper attribute.

use base64id::Base64Id;
use serde_json::Result;

#[derive(Base64Id)]
#[base64id(Serialize, Deserialize)]
struct MyId(i32);

fn main() -> Result<()> {
    let id = MyId(897100256);

    println!("{}", serde_json::to_string(&id)?); // "NXip4A"

    Ok(())
}

This will apply Base64Id specific implementations of Serialize and Deserialize to your struct.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 234

cargo fmt