Top "Password-encryption" questions

Password encryption is the act of securing a password with another password.

Correctly using crypt() with SHA512 in PHP

All the examples online show the use of crypt like this: $pass = crypt('something','$6$rounds=5000$anexamplestringforsalt$'); But everyone …

php password-encryption crypt
How to use scrypt to generate hash for password and salt in Python

I would like to use scrypt to create a hash for my users' passwords and salts. I have found two …

python password-encryption scrypt
Best practice of Hashing passwords

I would like to know which method to use to store passwords in database. I have implemented it using MD5 …

c# password-encryption
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
Ajax Login: Password Encryption

I am using jQuery Ajax to login a user. Right now, I use JS to grab the values from the …

encryption jquery login password-encryption
The proper way of implementing user login system

I want to make a user login system for the purpose of learning. I have several questions. I did some …

authentication login authorization password-encryption logonserver
Decrypting Stored Password on PL/SQL Developer

When you save connection details on All Around Automation's PL/SQL Developer, the password is encrypted as follows: DisplayName=Oracle …

oracle plsqldeveloper password-encryption
How to hash password in play framework (maybe with BCrypt)

I'm a bit new to play framework and password hashing. I tried to find some solutions for hashing my passwords …

playframework playframework-2.1 bcrypt password-encryption
Best practice for storing usernames & password in MySQL Databases

Possible Duplicate: Secure hash and salt for PHP passwords I am making a system that has stores user credentials (email, …

mysql database database-design encryption password-encryption
Salt and hashing, why not use username?

I must confess to being largely ignorant on most of the high-tech security issues relevant for web applications, but there …

encryption hash cryptography salt password-encryption