byte-array-ops 0.3.5

A no_std-compatible library for security-by-default byte array operations. Includes automatic memory zeroization, constant-time utilities, multiple input formats (hex, binary, UTF-8), bitwise operations, and comprehensive type conversions with minimal dependencies.
Documentation
[dependencies.zeroize]
default-features = false
features = ["alloc"]
version = "1.8.2"

[features]
default = []
experimental = []
ops_simd = ["zeroize/simd"]

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

[package]
authors = ["Salem B. <jurassic.lizard@protonmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["no-std", "cryptography", "encoding", "data-structures"]
description = "A no_std-compatible library for security-by-default byte array operations. Includes automatic memory zeroization, constant-time utilities, multiple input formats (hex, binary, UTF-8), bitwise operations, and comprehensive type conversions with minimal dependencies."
documentation = "https://docs.rs/byte-array-ops"
edition = "2024"
homepage = "https://gitlab.com/jurassicLizard/byte-array-ops"
keywords = ["byte-array", "no-std", "cryptography", "bitwise", "security"]
license = "Apache-2.0"
name = "byte-array-ops"
readme = "README.md"
repository = "https://gitlab.com/jurassicLizard/byte-array-ops"
rust-version = "1.85.1"
version = "0.3.5"

[profile.release]
strip = true

[profile.release-optimized]
codegen-units = 1
inherits = "release"
lto = "fat"
opt-level = 3