Top "Password-hash" questions

A password hash is a hash digest of a password obtained using a one-way hashing algorithm (not to be confused with [password-encryption]). Password hashes differ from regular hash functions in that they are designed to be slow and consume CPU and/or memory resources in order to make them harder to crack.

Joomla 3.2.1 password encryption

When the user register on the site , and I look in the database joomla_users in the password table, there …

php joomla password-hash
What is an alternative for bcrypt to use with node?

I have tried for days to get bcrypt installed on my windows machine with no luck. One of the dependencies (…

node.js cryptography bcrypt password-hash
PHP Strongest one way encryption/hashing method

I have a site on which people can sign up and I need to encrypt their password. I've researched it …

php passwords password-hash
What is the safest way to store a password using Code Igniter?

I am using Code Igniter for my current project. As of now, I am using MD5 for password hashing, but …

codeigniter password-protection salt bcrypt password-hash
using php to create a joomla user password?

I'm trying to create a custom registration component for Joomla, and I was wondering if anyone knew how to create …

php joomla passwords md5 password-hash
Why MD5/SHA1 password hashes cannot be decrypted?

I recently read an article about password hashing. How are MD5 or SHA1 hashes are created such that it can't …

password-encryption password-hash
What is better? Password_hash vs. SHA256 vs. SHA1 vs. md5

What is better with salt for password storage? MD5: $hash = md5($password . $salt); Password_hash: $hash = password_hash($password, PASSWORD_…

md5 store sha1 sha256 password-hash
Generate SHA256 hash in Objective-C

So I need to generate a Sha256 password in Objective-C, and can't figure out for the life of me how …

objective-c macos passwords sha256 password-hash
Password Hashing PHP 7

I am currently learning PHP and I have been looking through the forum for current thinking on how best to …

php password-encryption password-hash
Yii2 Login from DB (Setting unknown property: app\models\User::password_hash)

I want the user authentication in Yii to be based on user table in my database. This is my User …

authentication yii2 password-hash yii2-user