drlaravel/lockryptic

A powerful PHP library for encrypting files and folders with secure execution capabilities

dev-main 2024-11-20 13:54 UTC

This package is not auto-updated.

Last update: 2025-03-27 13:52:54 UTC


README

Version PHP License

A powerful PHP library for encrypting files and folders with secure execution capabilities.

๐Ÿ“‹ Table of Contents

โœจ 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

  1. Clone the Repository

    git clone https://github.com/Drlaravel/lockryptic.git
    cd lockryptic
  2. Install Dependencies

    composer install
  3. Configure Environment

    cp .env.example .env
  4. 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:

  1. Fork the repository
  2. Create a feature branch
  3. Commit your changes
  4. Push to the branch
  5. Create a Pull Request

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

Made with โค๏ธ by DR Laravel

Report Bug ยท Request Feature