Skip to content
forked from exonum/pwbox-rs

Modular password-based encryption for Rust

License

Notifications You must be signed in to change notification settings

gdidot/pwbox-rs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Modular password-based encryption for Rust

Rust License: Apache-2.0 rust 1.44.0+ required

Documentation: crate docs (master)

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.4.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, the alloc crate) even if the std 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.

About

Modular password-based encryption for Rust

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 98.2%
  • Other 1.8%