Registry / serialization / base32

base32

JSON →
library0.5.1rscratesunverified

Base32 encoder/decoder for Rust.

# Cargo.toml [dependencies] base32 = "0.5.1"
INSTALL
IMPORT
SIG · BASE32
B
base32
serializationrustv0.5.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

encode
use base32::encode;

Encodes a byte slice to Base32 using RFC4648.

use base32::{encode, Alphabet}; fn main() { let input = b"hello"; let encoded = encode(Alphabet::RFC4648 { padding: true }, input); println!("{}", encoded); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.5.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
19 hits · last 30 days
node
16
OpenAI (training)
1
Resources
base32 — cargo add base32 · libregistry