Ejemplo n.º 1
0
 public function testEncryptedDataCanBeDecrypted()
 {
     $plaintext = 'Something';
     $ciphertext = $this->_instance->encrypt('Something');
     $this->assertSame($plaintext, $this->_instance->decrypt($ciphertext));
 }