byte-array-ops 0.4.0

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
[package]
name = "byte-array-ops"
version = "0.4.0"
edition = "2024"
authors = ["Salem B. <jurassic.lizard@protonmail.com>"]
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."
license = "Apache-2.0"
repository = "https://gitlab.com/jurassicLizard/byte-array-ops"
homepage = "https://gitlab.com/jurassicLizard/byte-array-ops"
documentation = "https://docs.rs/byte-array-ops"
readme = "README.md"
keywords = ["byte-array", "no-std", "cryptography", "bitwise", "security"]
categories = ["no-std", "cryptography", "encoding", "data-structures"]
rust-version = "1.85.1"

[dependencies]
subtle = { version = "2.6.1", default-features = false, features = ["core_hint_black_box"] }
zeroize = { version = "1.8.2", default-features = false, features = ["alloc"] }




[profile.release]
strip=true
overflow-checks = true

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