Questions tagged [phpass]

phpass is a portable public domain password hashing framework for use in PHP applications.

phpass is a portable public domain password hashing framework for use in PHP applications. It is meant to work with PHP 3 and above.

The preferred (most secure) hashing method supported by phpass is the OpenBSD-style Blowfish-based bcrypt, known in PHP as CRYPT_BLOWFISH, with a fallback to BSDI-style extended DES-based hashes, known in PHP as CRYPT_EXT_DES, and a last resort fallback to MD5-based salted and variable iteration count password hashes implemented in phpass itself (also referred to as portable hashes).

phpass is integrated into various open-source projects, most notably WordPress. A modified version of phpass is used in Drupal.

93 questions
-1
votes
1 answer

Does hash values contain quotes?

Does hash values contain quotes? If it is dependent to the algorithm, I want to know about blowfish using phpass. I'm asking in regard to SQL injection because I don't want prepare the query for authentication and use place holders, just wrapping…
MTVS
  • 2,046
  • 5
  • 26
  • 37
-3
votes
2 answers

PHP phpass convert into C# script

I have a website to which authentication is done through the following script and generates a password that starts with $P$B... public static function hashPassword($plainPassword) { // use openwall.com phpass class $hasher = new…
ULY
  • 23
  • 5
-3
votes
2 answers

Golang and Phpass (Php) How to do?

I'm working for a company and I have to remake their API to Golang from Php. The previous developer was using Phpass with Php, however, I need to use it with Golang. I searched about how to implement phpass in go but it doesn't seems to work as well…
Emixam23
  • 3,854
  • 8
  • 50
  • 107
1 2 3 4 5 6
7