encrypt
$crypto = new Phalcon\Crypt();
$crypto->setCipher('rijndael-128');
$crypto->setKey($secure_key);
$data = bin2hex($crypto->encrypt("1:10000:0:100"));
decrypt
$data = $this->crypto->decrypt(hex2bin($data));
and html shows
encrypt
$crypto = new Phalcon\Crypt();
$crypto->setCipher('rijndael-128');
$crypto->setKey($secure_key);
$data = bin2hex($crypto->encrypt("1:10000:0:100"));
decrypt
$data = $this->crypto->decrypt(hex2bin($data));
and html shows