Example #1
0
function decode($value, $key = null)
{
    $c = new crypt();
    if ($key) {
        $par['key'] = $key;
    }
    return $c->decode($value, $par);
}