sicet7 / gcm
Package for encrypting strings with AES256-GCM
Installs: 1 699
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- phpseclib/phpseclib: ~3.0
Requires (Dev)
- phpunit/phpunit: ^10.5
This package is auto-updated.
Last update: 2025-03-29 01:08:39 UTC
README
Usage
<?php use Sicet7\GCM\Encryptor; use Sicet7\GCM\EncryptionVersion; require_once __DIR__ . '/vendor/autoload.php'; $key = '<keys-should-32-characters-long>'; $data = 'The quick brown fox jumps over the lazy dog'; // Encrypt Data. $encryptedString = Encryptor::encrypt( plainText: $data, key: $key, version: EncryptionVersion::V2 // It's recommended to use version 2 for all new data, V1 is only here for backwards compatibility ); // Decrypt Data. $decryptedData = Encryptor::decrypt( cipherText: $encryptedString, key: $key ); //Should output: "The quick brown fox jumps over the lazy dog" echo $decryptedData;