abcrypt is an implementation of the [abcrypt encrypted data format].
This crate implements version 0 of the format.
Add this to your Cargo.toml
:
toml
[dependencies]
abcrypt = "0.2.1"
alloc
Enables features that require an allocator. This is enabled by default (implied
by std
).
std
Enables features that depend on the standard library. This is enabled by default.
no_std
supportThis supports no_std
mode. Disables the default
feature to enable this.
Note that the memory blocks used by Argon2 when calculating a derived key is
limited to 256 KiB when the alloc
feature is disabled.
See the documentation for more details.
The minimum supported Rust version (MSRV) of this library is v1.65.0.
Please see [CHANGELOG.adoc].
Please see [CONTRIBUTING.adoc].
Copyright © 2022–2023 Shun Sakai (see [AUTHORS.adoc])
This library is distributed under the terms of either the Apache License 2.0 or the MIT License.
This project is compliant with version 3.0 of the [REUSE Specification]. See [COPYING] and copyright notices of individual files for more details on copyright and licensing information.