Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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");
```