https://github.com/apavazza/crypt
A file encryption and decryption tool
https://github.com/apavazza/crypt
aes argon2 cli cryptography encryption rust
Last synced: 12 months ago
JSON representation
A file encryption and decryption tool
- Host: GitHub
- URL: https://github.com/apavazza/crypt
- Owner: apavazza
- License: gpl-3.0
- Created: 2025-03-29T22:19:26.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-11T21:14:50.000Z (about 1 year ago)
- Last Synced: 2025-04-13T12:14:46.535Z (about 1 year ago)
- Topics: aes, argon2, cli, cryptography, encryption, rust
- Language: Rust
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Crypt
[](https://github.com/apavazza/crypt/actions/workflows/tests.yml)
[](https://github.com/apavazza/crypt/actions/workflows/build-and-release.yml)

[](LICENSE)
A file encryption and decryption tool using AES and Argon2id
## Usage
### Encrypting a File
To encrypt a file, run:
```shell
crypt encrypt
```
or
```shell
crypt e
```
### Decrypting a File
To decrypt a file, run:
```shell
crypt decrypt
```
or
```shell
crypt d
```
### Examining File Headers
To display the header information, run:
```shell
crypt header
```
or
```shell
crypt h
```
## Encryption
Files are encrypted using AES-256-CBC with argon2id hashing.
## Compiling
To compile the program, run:
```shell
cargo build --release
```
To run tests, run:
```shell
cargo test
```
## License
This software is provided under the terms of the [GNU General Public License v3.0](LICENSE).