https://github.com/mlocati/gestpay
PHP implementation of GestPay (Banca Sella)
https://github.com/mlocati/gestpay
Last synced: 29 days ago
JSON representation
PHP implementation of GestPay (Banca Sella)
- Host: GitHub
- URL: https://github.com/mlocati/gestpay
- Owner: mlocati
- Created: 2013-01-22T15:59:47.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-01-08T14:36:48.000Z (over 11 years ago)
- Last Synced: 2025-03-26T21:36:54.996Z (about 2 months ago)
- Language: PHP
- Size: 260 KB
- Stars: 9
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
GestPay
=======PHP implementation of GestPay (Banca Sella)
Usage
=====To encrypt a string:
```php
include 'GestPay.php';
$gestPay = new GestPay('YourShopLogin');
$gestPay->encode($dataToEncode);
```To decrypt a string:
```php
include 'GestPay.php';
$gestPay = new GestPay('YourShopLogin');
$gestPay->decode($encodedString);
```[](https://bitdeli.com/free "Bitdeli Badge")