Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wdalmut/rc4bundle
Integrate RC4 support as Symfony2 bundle
https://github.com/wdalmut/rc4bundle
bundle php rc4 symfony symfony-bundle
Last synced: about 1 month ago
JSON representation
Integrate RC4 support as Symfony2 bundle
- Host: GitHub
- URL: https://github.com/wdalmut/rc4bundle
- Owner: wdalmut
- Created: 2015-05-19T22:10:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-20T04:22:13.000Z (over 9 years ago)
- Last Synced: 2024-10-13T06:22:43.096Z (about 1 month ago)
- Topics: bundle, php, rc4, symfony, symfony-bundle
- Language: PHP
- Size: 141 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RC4 Bundle
[![Build Status](https://travis-ci.org/wdalmut/RC4Bundle.svg?branch=master)](https://travis-ci.org/wdalmut/RC4Bundle)
Integrate RC4 support as Symfony2 bundle
Add your key as parameter
```xml
# parameters.yml
rc4_key: "this-is-my-super-secret-key"
```## Get RC4 as service
```php
$obf = $this->container->get("rc4");//Use it
echo $obf->rc4("this-is-my-string");
```