https://github.com/vpakarinen/secure-file-guard
guard your files with strong encryption.
https://github.com/vpakarinen/secure-file-guard
aes-256 cryptography encryption file-encryption file-management password-protection pbkdf2 python secure-delete secure-storage security yaml-config
Last synced: about 1 month ago
JSON representation
guard your files with strong encryption.
- Host: GitHub
- URL: https://github.com/vpakarinen/secure-file-guard
- Owner: vpakarinen
- License: mit
- Created: 2024-11-11T11:19:38.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-13T15:32:03.000Z (5 months ago)
- Last Synced: 2024-11-20T19:12:11.495Z (5 months ago)
- Topics: aes-256, cryptography, encryption, file-encryption, file-management, password-protection, pbkdf2, python, secure-delete, secure-storage, security, yaml-config
- Language: Python
- Homepage:
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Secure File Guard
Python application that provides secure storage with strong encryption and brute-force protection.
## Features
- AES-256 encryption with PBKDF2 key derivation for maximum security
- Strong password requirements with brute-force protection
- Protected file permissions and vault integrity verification
- Configurable security settings and storage locations
- Add, extract, and list files with encrypted metadata
- Comprehensive error handling and logging## How It Works
- Creates an encrypted vault secured by your password and a unique salt
- Files are encrypted using AES-256 and stored in a secure container
- Password verification and key derivation ensure vault security
- All operations maintain file integrity and metadata security
- Files can be safely added to or extracted from the vault## Requirements
- Python 3.8+
- `requirements.txt` includes all the required packages## Installation
1. **Clone the Repository**
```bash
git clone https://github.com/vpakarinen/secure-file-guard.git
cd secure-file-guard
```2. **Create a Virtual Environment** (Optional but Recommended)
```bash
python3 -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
```3. **Install Dependencies**
```bash
pip install -r requirements.txt
```