Slide 84
Slide 84 text
Encode Bewit
$id = 'id1234';
$exp = '1431390129';
$mac = '1VLyBgXcUovTDKwCiYJo+EuYaTZq8LIgICS7jxkGSIw=';
$ext = 'some-app-ext-data';
// id1234\1431390129\1VLyBgXcUovTDKwCiYJo+E...jxkGSIw=\some-app-ext-data
$bewit = implode('\\', [$id, $exp, $mac, $ext]);
// aWQxMj...0LWRhdGE=
$encoded = base64_encode($bewit);
// aWQxMj...0LWRhdGE
$stripped = str_replace(
['+', '/', '=', "\n"],
['-', '_', '', ''],
$encoded
);