Helper class to encrypt/decrypt data with secret key
 /**
  * Helper method to decrypt data using clientSecret as key
  *
  * @param $data
  * @return string
  */
 public function decrypt($data)
 {
     return $this->cipher->decrypt($data);
 }