PHP Package: laminas/laminas-crypt

Laminas Crypt is a PHP library providing secure cryptographic functions for data encryption and decryption, hashing, and secure password handling.

Current Version: 4.0.0
Last Updated: 2024-07-17
PHP Requirement: ~8.1.0 || ~8.2.0 || ~8.3.0
Dependencies:
laminas/laminas-escaper
laminas/laminas-servicemanager
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Laminas Crypt is a versatile PHP library that offers a comprehensive suite of cryptographic tools for data protection and security. It includes features for encryption, decryption, password hashing, and secure key management. With Laminas Crypt, developers can implement robust security measures to safeguard sensitive information and ensure data integrity in their applications.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 4.0.0

Download Download v4.0.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/laminas/laminas-crypt/4.0.0/loader.php';
require_once 'libs/laminas/laminas-escaper/2.17.0/loader.php';
require_once 'libs/laminas/laminas-servicemanager/4.4.0/loader.php';

use Laminas\Crypt\BlockCipher;
use Laminas\Crypt\Symmetric\Openssl;

$obj = new BlockCipher();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.