Cita:
Iniciado por NUCKLEAR Quizas te sirva :
Código PHP:
Ver original<?php
function encripta($text)
{
}
function desencripta($text)
{
}
echo encripta("192.168.1.1 mensaje oculto fecha");
echo "<br />";
echo desencripta("nQfWYpsaqRF3CaP4NrjBbVx6KyItQgw5NPAHKiPVb/8=");
?>
Serialize
Saludos.
Qué diferencia hay entre encriptarlo como pones en tu ejemplo y hacerlo cómo ya utilizo?
Código PHP:
Ver originalfunction encrypt($string, $key) {
$result = '';
for($i=0; $i<strlen($string); $i++) { $char = substr($string, $i, 5); $result.=$char;
}
}
function decrypt($string, $key) {
$result = '';
for($i=0; $i<strlen($string); $i++) { $char = substr($string, $i, 5); $result.=$char;
}
return $result;
}
Qué campos nuevos necesitas en la bd para cumplir con eso? solo el hash?
Muchas gracias