davodm/dgcrypt-php
Composer 安装命令:
composer require davodm/dgcrypt-php
包简介
A simple PHP library for encryption and decryption using AES-256-CBC to be usable in different language/devices.
README 文档
README
Dgcrypt is a simple PHP library for encryption and decryption using multiple encryption methods including AES-256-CBC, AES-256-GCM, and ChaCha20-Poly1305. It is designed to securely encrypt data on the backend, which can then be easily decrypted on the client side, such as on Android and iOS devices. This ensures that the data remains secure during transmission and cannot be easily cracked in between.
Platform Compatibility
The Dgcrypt library is designed to work seamlessly across multiple platforms. You can find corresponding libraries for the following platforms:
- Android: Dgcrypt-Android
- Node.js: Dgcrypt-Node
These libraries allow you to easily decrypt data that was encrypted on the backend using this PHP library, ensuring secure communication between your backend and client applications.
Supported Encryption Methods
Dgcrypt supports the following encryption methods:
- AES-256-CBC: Standard encryption method providing confidentiality.
- AES-256-GCM: Provides both encryption and authentication.
- ChaCha20-Poly1305: Modern encryption method known for its performance and security.
Installation
You can install the package via Composer:
composer require davodm/dgcrypt-php
Usage
Setting Up
use Dgcrypt\Dgcrypt; // Initialize the Dgcrypt class with the desired encryption method $dgcrypt = new Dgcrypt('aes-256-gcm'); // Can be 'aes-256-cbc', 'aes-256-gcm', or 'chacha20-poly1305' // Set a secret key $dgcrypt->setKey('your-secret key');
Encrypting Data on the Backend:
// Encrypt a string $plainText = 'Hello, World!'; $encrypted = $dgcrypt->encrypt($plainText); // Output the encrypted string echo $encrypted;
Decrypting Data on the Backend:
// Decrypt the previously encrypted string $decrypted = $dgcrypt->setCipherMethod('aes-256-cbc')->decrypt($encrypted); // Output the decrypted string echo $decrypted;
Auto-Generating a Key:
// Generate a secure random key $generatedKey = $dgcrypt->generateKey(); // Output the generated key echo $generatedKey; // Display the hexadecimal key
Setting the Initialization Vector (IV):
// Optionally, set a custom IV (12 bytes for GCM or ChaCha20, 16 bytes for CBC) // If no IV is set, a secure random IV will be generated automatically $dgcrypt->setIV();
License
This project is licensed under the MIT License - see the LICENSE file for details.
Author
Davod Mozafari - Twitter
davodm/dgcrypt-php 适用场景与选型建议
davodm/dgcrypt-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 9 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 07 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 davodm/dgcrypt-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 davodm/dgcrypt-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 9
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2024-07-24