[go: up one dir, main page]

zeroize 0.10.1

Securely clear secrets from memory with a simple trait built on stable Rust primitives which guarantee memory is zeroed using an operation will not be 'optimized away' by the compiler. Uses a portable pure Rust implementation that works everywhere, even WASM!
Documentation
[package]
name        = "zeroize"
description = """
              Securely clear secrets from memory with a simple trait built on
              stable Rust primitives which guarantee memory is zeroed using an
              operation will not be 'optimized away' by the compiler.
              Uses a portable pure Rust implementation that works everywhere,
              even WASM!
              """
version     = "0.10.1" # Also update html_root_url in lib.rs when bumping this
authors     = ["Tony Arcieri <tony@iqlusion.io>"]
license     = "Apache-2.0 OR MIT"
edition     = "2018"
homepage    = "https://github.com/iqlusioninc/crates/"
repository  = "https://github.com/iqlusioninc/crates/tree/develop/zeroize"
readme      = "README.md"
categories  = ["cryptography", "memory-management", "no-std", "os"]
keywords    = ["memory", "memset", "secure", "volatile", "zero"]

[package.metadata.docs.rs]
all-features = true

[badges]
travis-ci = { repository = "iqlusioninc/crates", branch = "develop" }
maintenance = { status = "actively-developed" }

[dependencies]
zeroize_derive = { version = "0.10", path = "../zeroize_derive", optional = true }
bytes = { version = "0.4", optional = true }

[features]
default = ["alloc"]
alloc = []