base32ct 0.3.0

Pure Rust implementation of Base32 (RFC 4648) which avoids any usages of data-dependent branches/LUTs and thereby provides portable "best effort" constant-time operation and embedded-friendly no_std support
Documentation
[dev-dependencies.base32]
version = "0.5"

[dev-dependencies.proptest]
default-features = false
features = ["std"]
version = "1.6"

[features]
alloc = []

[lib]
name = "base32ct"
path = "src/lib.rs"

[package]
authors = ["RustCrypto Developers"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography", "encoding", "no-std", "parser-implementations"]
description = """
Pure Rust implementation of Base32 (RFC 4648) which avoids any usages of
data-dependent branches/LUTs and thereby provides portable "best effort"
constant-time operation and embedded-friendly no_std support
"""
documentation = "https://docs.rs/base32ct"
edition = "2024"
homepage = "https://github.com/RustCrypto/formats/tree/master/base32ct"
keywords = ["crypto"]
license = "Apache-2.0 OR MIT"
name = "base32ct"
readme = "README.md"
repository = "https://github.com/RustCrypto/formats"
resolver = "2"
rust-version = "1.85"
version = "0.3.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "proptests"
path = "tests/proptests.rs"

[[test]]
name = "vectors"
path = "tests/vectors.rs"