10 releases
0.5.0 | Jan 23, 2022 |
---|---|
0.4.0 | Jan 6, 2021 |
0.3.0 | Mar 12, 2020 |
0.2.1 | Sep 6, 2019 |
0.1.0 | Dec 4, 2018 |
#5 in #exonum
106 downloads per month
Used in 16 crates
(2 directly)
78KB
1.5K
SLoC
Modular password-based encryption for Rust
pwbox
crate provides utilities for password-based encryption together with
corresponding composable cryptographic primitives. Using the crate, it is
possible to securely encrypt sensitive data with a password, serialize it
to any serde
-supported format, and restore data.
Warning. Although pwbox
is constructed analogously to an Ethereum keystore
(and is compatible with it, see crate docs), no independent cryptology expertise has been conducted
regarding its safety. Use at your own risk.
Usage
Add this to your Crate.toml
:
[dependencies]
pwbox = "0.5.0"
See crate documentation for more details how to use the crate.
Crate Features
std
(enabled by default): Enables types from the Rust standard library. Switching this feature off can be used for constrained environments, such as WASM. Note that the crate still requires an allocator (that is, thealloc
crate) even if thestd
feature is disabled.exonum_sodiumoxide
(enabled by default),rust-crypto
,pure
(both disabled by default): Provide the cryptographic backends.
License
pwbox
is licensed under the Apache License (Version 2.0). See LICENSE for details.
Dependencies
~3–6.5MB
~81K SLoC