drlaravel / lockryptic
A powerful PHP library for encrypting files and folders with secure execution capabilities
dev-main
2024-11-20 13:54 UTC
Requires
- php: >=7.4
- defuse/php-encryption: ^2.2
- monolog/monolog: ^2.0
- symfony/console: ^5.0
- vlucas/phpdotenv: ^5.0
This package is not auto-updated.
Last update: 2025-03-27 13:52:54 UTC
README
A powerful PHP library for encrypting files and folders with secure execution capabilities.
๐ Table of Contents
- Features
- System Requirements
- Installation
- Quick Start
- Usage Guide
- Security Considerations
- Architecture
- Contributing
- License
โจ Features
- ๐ Secure File Encryption: Protect sensitive PHP files with strong encryption
- ๐ Folder Encryption: Recursively encrypt entire directories
- โก Secure Code Execution: Run encrypted PHP files without exposing source code
- โ๏ธ Configurable Settings: Flexible configuration via
.env
file - ๐ Detailed Logging: Comprehensive logging of all operations
- ๐ก๏ธ Enterprise-Grade Security: Uses industry-standard encryption algorithms
๐ ๏ธ System Requirements
- PHP 7.4 or higher
- Composer
- OpenSSL extension
- File system write permissions
๐ฅ Installation
-
Clone the Repository
git clone https://github.com/Drlaravel/lockryptic.git cd lockryptic
-
Install Dependencies
composer install
-
Configure Environment
cp .env.example .env
-
Generate Encryption Key
php generate_key.php
๐ Quick Start
# 1. Encrypt a PHP file php bin/console encrypt:file yourcode.php # 2. Execute a function from encrypted file php bin/console execute yourcode.enc.php functionName arg1 arg2 # Example with calculator function php bin/console execute cal.enc.php cal 5 3 # Output: Result: 8
๐ Usage Guide
Command Reference
1. File Operations
# Encrypt a single file php bin/console encrypt:file source.php [encrypted.php] # Decrypt a file (requires encryption key) php bin/console decrypt:file encrypted.php [decrypted.php]
2. Folder Operations
# Encrypt an entire folder php bin/console encrypt:folder /path/to/source [/path/to/encrypted] --exclude=txt,log # Decrypt a folder (requires encryption key) php bin/console decrypt:folder /path/to/encrypted [/path/to/decrypted]
3. Secure Execution
# Execute function from encrypted file php bin/console execute encrypted.php functionName [arguments...] # Example with multiple arguments php bin/console execute math.enc.php calculate 10 20 "multiply"
Project Structure
lockryptic/ โโโ src/ โ โโโ Commands/ # CLI Commands โ โ โโโ EncryptFileCommand.php โ โ โโโ DecryptFileCommand.php โ โ โโโ EncryptFolderCommand.php โ โ โโโ DecryptFolderCommand.php โ โ โโโ ExecuteCommand.php โ โโโ Encryption/ # Encryption Logic โ โ โโโ Encryptor.php โ โโโ Execution/ # Secure Execution โ โ โโโ SecureLoader.php โ โโโ Config/ # Configuration โ โโโ Config.php โโโ bin/ โ โโโ console # CLI Entry Point โโโ .env.example # Environment Template โโโ composer.json # Dependencies
Configuration Options
# .env file configuration options # Your secure encryption key (generated) ENCRYPTION_KEY=your_generated_key_here # Encryption algorithm ENCRYPTION_METHOD=AES-256-CBC # Base directory for encrypted files BASE_DIR=./encrypted_files # Log file location LOG_FILE=./encryption.log
๐ Security Considerations
Key Management
- Store encryption keys securely
- Never commit
.env
file to version control - Use different keys for development and production
Best Practices
- Regularly rotate encryption keys
- Backup encrypted files and keys separately
- Monitor access logs regularly
- Keep the library and dependencies updated
๐๏ธ Architecture
Encryption Flow
Source Code โ Encryption โ Encrypted File โ Secure Execution โ โ Developer Users
Security Model
โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโ โ Source Code โ โ โ Encryption โ โ โ Encrypted File โ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโ โ โ โ Developer Access Encryption Key User Access โ โ โ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโ โ Full Access โ โ Secure Key โ โ Execute Only โ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโ
๐ค Contributing
We welcome contributions! Please follow these steps:
- Fork the repository
- Create a feature branch
- Commit your changes
- Push to the branch
- Create a Pull Request
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
Made with โค๏ธ by DR Laravel