public function testEncryptDecrypt()
 {
     $str = 'randomstring#12312321';
     $encrypted = CryptUtility::encrypt($str, $this->key);
     $decrypted = CryptUtility::decrypt($encrypted, $this->key);
     $this->assertEquals($str, $decrypted);
 }