base64ct 1.7.3

Pure Rust implementation of Base64 (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
[[bench]]
name = "mod"
path = "benches/mod.rs"

[dev-dependencies.base64]
version = "0.22"

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

[features]
alloc = []
std = ["alloc"]

[lib]
name = "base64ct"
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 Base64 (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/base64ct"
edition = "2021"
homepage = "https://github.com/RustCrypto/formats/tree/master/base64ct"
keywords = ["crypto", "base64", "pem", "phc"]
license = "Apache-2.0 OR MIT"
name = "base64ct"
readme = "README.md"
repository = "https://github.com/RustCrypto/formats"
rust-version = "1.81"
version = "1.7.3"

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

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

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

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

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

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

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