Questions tagged as 'hash'

0
answers

validate a password with hash encryption for a php login

<?php session_start(); // Include db config require_once 'config.php'; // Init vars $userinput = $password = ''; $userinput_err = $password_err = ''; // Process form when post submit if(isset($_POST['login'])){ // Sanitiz...
asked by 18.10.2018 / 01:19
0
answers

sha256 hash with NodeJs and Symfony2.8

I'm trying to migrate my backend from Symfony 2.8 to NodeJs(ExpressJs) and right now I'm trying to use the same login and for that I need to compare the password encriptadas . To get the password (encrypted) and be able...
asked by 11.08.2018 / 15:18
1
answer

Comparison of 2 hashes in perl

I have 2 hash tables, the 2 tables have the same keys, but different values. I need to compare both values of the same key and know the difference in values. Example: Hash 1: clave1 = > 5 Hash 1: clave2 = > 10 Hash 2: clave1...
asked by 14.08.2018 / 02:46