A library to quickly encode/decode web tokens

v1.0.3 2022-11-29 16:46 UTC

This package is auto-updated.

Last update: 2024-03-29 03:51:40 UTC


README

Latest Stable Version Minimum PHP Version CircleCI GitHub license

This library provides a quick and simple way to encode/decode WebTokens.

Usage examples

# Passing the key on the constructor
$wt = new WT('AES-256-CBC', 'abcdefgh', 'potato');

$object = new \stdClass();
$token = $wt->encode($object);

$decoded = $wt->decode($token);

# Passing the key during encode/decode
$wt = new WT('AES-256-CBC', 'xkfo39sp');

$object = new \stdClass();
$token = $wt->encode($object, 'potato');

$decoded = $wt->decode($token, 'potato');