18 releases
0.3.7 | Oct 19, 2024 |
---|---|
0.3.6 | Jul 31, 2024 |
0.3.4 | Apr 16, 2024 |
0.3.2 | Feb 17, 2024 |
0.2.7 | Nov 29, 2023 |
#306 in Cryptography
44 downloads per month
Used in 4 crates
53KB
901 lines
abcrypt
abcrypt is an implementation of the abcrypt encrypted data format.
Usage
Add this to your Cargo.toml
:
[dependencies]
abcrypt = "0.3.7"
Crate features
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.
serde
Enables serialization support for Params
.
no_std
support
This 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.
Documentation
See the documentation for more details.
Minimum supported Rust version
The minimum supported Rust version (MSRV) of this library is v1.74.0.
Source code
The upstream repository is available at https://github.com/sorairolake/abcrypt.git.
The source code is also available at:
Changelog
Please see CHANGELOG.adoc.
Contributing
Please see CONTRIBUTING.adoc.
License
Copyright © 2022–2024 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.2 of the REUSE Specification. See copyright notices of individual files for more details on copyright and licensing information.
Dependencies
~2.3–3.5MB
~59K SLoC