Top "Crypt" questions

crypt() is Unix C library function used for hashing passwords.

(PHP) How to use crypt() with CRYPT_BLOWFISH?

First, I see that to use CRYPT_BLOWFISH, i need to use a 16 char salt starting with $2a$. However, the …

php crypt
hash() vs. crypt() function comparison

I'm currently implementing a login system. I want to store the password and the salt in a database. Now I …

php encryption hash crypt
Rfc2898DeriveBytes in java

I am trying to implement the following code in java: var keyGenerator = new Rfc2898DeriveBytes(password, salt, 1000); byte[] key = keyGenerator.…

java crypt
strcmp vs. == vs. === in PHP for checking hash equality

I'm using crypt() to hash passwords in PHP, and am trying to work out the safest way of testing equality …

php string security bcrypt crypt
Can you convert the output of php crypt() to valid MD5?

I have some strings that have been encrypted using the PHP function crypt(). The outputs look something like this: $1$Vf/.4.1.$…

php hash cryptography md5 crypt
What is the correct format for a blowfish salt using PHP's crypt?

I have read the information provided on the PHP Manual Entry for crypt(), but I find myself still unsure of …

php hash salt blowfish crypt
How to automatically generate salt for crypt method with blowfish

I have just started learning PHP and I want to create a website with a login for my final year …

php passwords blowfish crypt
Using crypt() from crypt.h

I am doing the week2 pset for CS50. When using the crypt function, the char pointers which point to the …

c pointers cs50 crypt