# php-aes-gcm **Repository Path**: smallvip/php-aes-gcm ## Basic Information - **Project Name**: php-aes-gcm - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-16 - **Last Updated**: 2021-03-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README AES GCM (Galois Counter Mode) PHP Implementation ==================================================== Help me out for a couple of :beers:! [![Beerpay](https://beerpay.io/Spomky-Labs/php-aes-gcm/badge.svg?style=beer-square)](https://beerpay.io/Spomky-Labs/php-aes-gcm) [![Beerpay](https://beerpay.io/Spomky-Labs/php-aes-gcm/make-wish.svg?style=flat-square)](https://beerpay.io/Spomky-Labs/php-aes-gcm?focus=wish) ---- [![Gitter](https://badges.gitter.im/Spomky-Labs/php-aes-gcm.svg)](https://gitter.im/Spomky-Labs/php-aes-gcm?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Spomky-Labs/php-aes-gcm/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/Spomky-Labs/php-aes-gcm/?branch=master) [![Coverage Status](https://coveralls.io/repos/github/Spomky-Labs/php-aes-gcm/badge.svg?branch=master)](https://coveralls.io/github/Spomky-Labs/php-aes-gcm?branch=master) [![Build Status](https://travis-ci.org/Spomky-Labs/php-aes-gcm.svg?branch=master)](https://travis-ci.org/Spomky-Labs/php-aes-gcm) [![HHVM Status](http://hhvm.h4cc.de/badge/spomky-labs/php-aes-gcm.svg)](http://hhvm.h4cc.de/package/spomky-labs/php-aes-gcm) [![PHP 7 ready](http://php7ready.timesplinter.ch/Spomky-Labs/php-aes-gcm/badge.svg)](https://travis-ci.org/Spomky-Labs/php-aes-gcm) [![SensioLabsInsight](https://insight.sensiolabs.com/projects/1460711c-d11d-486c-a73a-8290d3e03460/big.png)](https://insight.sensiolabs.com/projects/1460711c-d11d-486c-a73a-8290d3e03460) [![Latest Stable Version](https://poser.pugx.org/Spomky-Labs/php-aes-gcm/v/stable.png)](https://packagist.org/packages/Spomky-Labs/php-aes-gcm) [![Total Downloads](https://poser.pugx.org/Spomky-Labs/php-aes-gcm/downloads.png)](https://packagist.org/packages/Spomky-Labs/php-aes-gcm) [![Latest Unstable Version](https://poser.pugx.org/Spomky-Labs/php-aes-gcm/v/unstable.png)](https://packagist.org/packages/Spomky-Labs/php-aes-gcm) [![License](https://poser.pugx.org/Spomky-Labs/php-aes-gcm/license.png)](https://packagist.org/packages/Spomky-Labs/php-aes-gcm) [![GuardRails badge](https://badges.production.guardrails.io/Spomky-Labs/php-aes-gcm.svg)](https://www.guardrails.io) # The Release Process The release process [is described here](doc/Release.md). # Prerequisites This library needs at least ![PHP 5.4+](https://img.shields.io/badge/PHP-5.4%2B-ff69b4.svg). It has been successfully tested using `PHP 5.4` to `PHP 7.1`, `HHVM` and nightly branches. If you use PHP 7.1+, this library has very good performance. **If you do not use PHP 7.1+, we highly recommend you to install the [PHP Crypto extension](https://github.com/bukka/php-crypto).** This extension drastically increase the performance of this library. With our pure PHP method, you will have low performance. # Installation The preferred way to install this library is to rely on Composer: ```sh composer require "spomky-labs/php-aes-gcm" ``` # How to use ```php