abcrypt

Crates.ioabcrypt
lib.rsabcrypt
version
sourcesrc
created_at2023-08-25 06:27:28.583206+00
updated_at2025-01-09 03:26:08.902846+00
descriptionAn implementation of the abcrypt encrypted data format
homepagehttps://sorairolake.github.io/abcrypt/
repositoryhttps://github.com/sorairolake/abcrypt
max_upload_size
id954383
Cargo.toml error:TOML parse error at line 24, column 1 | 24 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Shun Sakai (sorairolake)

documentation

https://docs.rs/abcrypt

README

abcrypt

CI Version MSRV Docs License

abcrypt is an implementation of the abcrypt encrypted data format.

This crate supports the abcrypt version 1 file format.

Usage

Add this to your Cargo.toml:

[dependencies]
abcrypt = "0.4.0"

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.

Home page

https://sorairolake.github.io/abcrypt/

License

Copyright (C) 2022 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.

Commit count: 758

cargo fmt