<?php $this->assertNotSame('bar', $encrypted);
$this->assertSame('bar', $e->decrypt($encrypted));
$e = new Encrypter(random_bytes(32), 'AES-256-GCM');
$encrypted = $e->encrypt('foo');
$this->assertNotSame('foo', $encrypted);
$this->assertSame('foo', $e->decrypt($encrypted));