22.08.2012, 16:23
This hash is better that whirlpool's?
The current strongest encryption algorithms are SHA-512, RIPEMD-320, and Whirlpool. Any one of these algorithms are worthy of protecting top secret level information for your business. - http://www.kellermansoftware.com/t-a...ngesthash.aspx |
Password with PHP: ($passcrypt = hash_hmac('sha512', $_POST['password'], DB_PASS_SALT)
6c5a950af83bb9d0110692c538f9b9455bbde016092aff3d0f 3c885881974044677c42dbb9f7c57b24a518a3dabb7f63e5f6 9061e7b9cdf50d676c0d2315ad4b And Password with samp: ddc89a13455bc51cd221b292d50de2bfe5509b9f1a27acc2f9 a3f1104a1b1cf9f40653a9e973f54e989af1197fb784d36f86 f17210a88616259c2dfeb5a251db its different as I can make the encryption is the same? |
$passcrypt = hash('sha512', $_POST['password']);
$passcrypt = hash('sha512', $POST['password'] . 'mySalt');
new passcrypt[128], saltedPassword[128];
format(saltedPassword, sizeof(saltedPassword), "%smySalt", password);
SHA512(saltedPassword, passcrypt, 128);
new tmppass[32] = "7414474144", passhash[128]; format(tmppass, sizeof(tmppass), "%s%s", tmppass, salt_char); SHA512(tmppass, passhash, sizeof(passhash));
hash('sha512', '7414474144'.SALT_CHAR)
help i get error about a .dll file
says this is missing MSVCR100D.dll |