ddidderr
d7e86d8f88
A file en-/decryption tool for easy use. Currently `fcry` uses `ChaCha20Poly1305` ([RFC 8439](https://datatracker.ietf.org/doc/html/rfc8439)) as [AEAD](https://en.wikipedia.org/wiki/Authenticated_encryption) cipher provided by the [chacha20poly1305](https://docs.rs/chacha20poly1305/latest/chacha20poly1305/) crate.
17 lines
299 B
TOML
17 lines
299 B
TOML
[package]
|
|
authors = ["ddidderr <ddidderr@paul.network>"]
|
|
edition = "2021"
|
|
name = "fcry"
|
|
version = "0.9.0"
|
|
|
|
[dependencies]
|
|
chacha20poly1305 = {version = "0.9.0", features = ["stream"]}
|
|
clap = "3"
|
|
rand = {version = "0.8"}
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
debug = false
|
|
lto = true
|
|
panic = "unwind"
|