No busques más por todo internet porque has llegado al lugar adecuado, poseemos la respuesta que necesitas y sin complicarte.
Ejemplo: cifrado bidireccional php descifrado
functionencryptor($action,$string)$output=FALSE;$encrypt_method="AES-256-CBC";$secret_key='SecretKeyWord';$secret_iv='[email protected]';// hash$key=hash('sha256',$secret_key);// iv - encrypt method AES-256-CBC expects 16 bytes - else you will get a warning$iv=substr(hash('sha256',$secret_iv),0,16);//do the encryption given text/string/numberif($action=='encrypt')$output=openssl_encrypt($string,$encrypt_method,$key,0,$iv);$output=base64_encode($output);elseif($action=='decrypt')//decrypt the given text/string/number$output=openssl_decrypt(base64_decode($string),$encrypt_method,$key,0,$iv);return$output;functionencrypt($data)returnurlencode(self::encryptor('encrypt',self::sanitize($data)));functiondecrypt($data)returnself::encryptor('decrypt',urldecode(self::sanitize($data)));// Now you can just call encrypt($string) or decrypt($string)?>
Aquí tienes las reseñas y calificaciones
Recuerda algo, que tienes la capacidad de valorar esta división si te fue de ayuda.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)