Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adistrim/aesfoldercrypt-v2
🔒 This repository contains a script for encrypting and decrypting folders on Raspberry Pi or any linux system using AES encryption.
https://github.com/adistrim/aesfoldercrypt-v2
aes-256 pbkdf2 raspberry-pi shell
Last synced: 7 days ago
JSON representation
🔒 This repository contains a script for encrypting and decrypting folders on Raspberry Pi or any linux system using AES encryption.
- Host: GitHub
- URL: https://github.com/adistrim/aesfoldercrypt-v2
- Owner: adistrim
- License: mit
- Created: 2024-04-04T10:33:00.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-28T08:14:25.000Z (7 months ago)
- Last Synced: 2024-04-28T14:05:08.720Z (7 months ago)
- Topics: aes-256, pbkdf2, raspberry-pi, shell
- Language: Shell
- Homepage:
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Folder Encryption/Decryption Script V2 for Raspberry Pi
This script provides a simple way to encrypt and decrypt folders using the AES algorithm with PBKDF2 for key derivation. It utilizes OpenSSL for encryption and decryption processes. The script is designed to run on a Raspberry Pi, but it can be used on any Linux-based system.
Youtube Video: [Encryption on Raspberry pi](https://youtu.be/KQOr3ikgw-M)
## Installation
1. Clone the repository:
```bash
git clone https://github.com/adistrim/AESFolderCrypt-V2
```2. Change to the project directory:
```bash
cd AESFolderCrypt-V2
```3. Run the installation script:
```bash
./install.sh
```## Usage
### Help
To view detailed usage instructions, use:
```bash
foldercrypt --help
```### Encrypting a Folder:
```bash
foldercrypt -enc
```
Example:
```bash
foldercrypt -enc my_folder
```
### Decrypting an Encrypted File:
```bash
foldercrypt -dec
```
Example:
```bash
foldercrypt -dec my_folder.enc
```## License
This project is licensed under the [MIT License](LICENSE).