19 releases (11 breaking)
0.11.0 | Nov 3, 2024 |
---|---|
0.10.0 | Feb 4, 2024 |
0.9.2 | Jun 13, 2023 |
0.9.1 | Mar 24, 2023 |
0.0.0 | Oct 6, 2019 |
#104 in Cryptography
15,736 downloads per month
Used in 39 crates
(23 directly)
1.5MB
9K
SLoC
age Rust library
age is a simple, modern, and secure file encryption library. It features small explicit keys, no config options, and UNIX-style composability.
This crate provides a set of Rust APIs that can be used to build more complex
tools based on the age format. The primary consumers of these APIs are the
rage
CLI tools, which provide straightforward
encryption and decryption of files or streams (e.g. in shell scripts), as well
as additional features such as mounting an encrypted archive.
The format specification is at age-encryption.org/v1. The age format was designed by @Benjojo and @FiloSottile.
The reference interoperable Go implementation is available at filippo.io/age.
Usage
Add this line to your Cargo.toml
:
age = "0.11"
See the documentation for examples.
Feature flags
-
armor
enables theage::armor
module, which provides support for ASCII-armored age files. -
async
enables asynchronous APIs for encryption and decryption. -
cli-common
enables common helper functions for building age CLI tools. -
ssh
enables theage::ssh
module, which allows for reusing existing SSH key files for age encryption. -
web-sys
enables calculating the work factor for passphrase encryption with the Performance timer via theweb-sys
crate, when compiling for a WebAssembly target such aswasm32-unknown-unknown
. This feature is ignored for thewasm32-wasi
target, which supportsstd::time::SystemTime
. -
unstable
enables in-development functionality. Anything behind this feature flag has no stability or interoperability guarantees.
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~8–21MB
~304K SLoC