You are here

public function LockrAes256CbcSha256KeyWrapperTest::testEncryptsData in Lockr 7.3

File

vendor/lockr/lockr/tests/KeyWrapper/LockrAes256CbcSha256KeyWrapperTest.php, line 11

Class

LockrAes256CbcSha256KeyWrapperTest

Namespace

Lockr\Tests\KeyWrapper

Code

public function testEncryptsData() {
  $text = 'abcd';
  $data = KeyWrapper::encrypt($text);
  $plaintext = KeyWrapper::decrypt($data['ciphertext'], $data['encoded']);
  $this
    ->assertSame($text, $plaintext);
}