public function LockrAesCbcKeyWrapperTest::testEncryptsData in Lockr 7.3
@requires function mcrypt_encrypt
File
- vendor/
lockr/ lockr/ tests/ KeyWrapper/ LockrAesCbcKeyWrapperTest.php, line 13
Class
Namespace
Lockr\Tests\KeyWrapperCode
public function testEncryptsData() {
$text = 'abcd';
$data = KeyWrapper::encrypt($text);
$plaintext = KeyWrapper::decrypt($data['ciphertext'], $data['encoded']);
$this
->assertSame($text, $plaintext);
}