History log of /httpd/support/passwd_common.c
Revision Date Author Comments Expand
eae946e6338893a0ad55747c93b3e42f476f17fc 1494317 18-Jun-2013 fuankg

Make MSVC compilers happy.

b1369c3b42c7c243e7e10611a8e63e8183ed9fc8 1490507 07-Jun-2013 jailletc36

Fix commit 1465115. truncpw was allocated from a pool and not via malloc

dfa2373bc52d263178cad93e8f53e0f51859fcea 1481677 13-May-2013 fuankg

Fixed include for Windows.

dbf5f584c62fe6030d81121fdddeb7588b78b867 1465116 05-Apr-2013 sf

htpasswd: Add -v option to verify a password htpasswd and htdbm could use some more refactoring...

15320dc646e41d3eb38736978500349c4d66dc0d 1465115 05-Apr-2013 sf

fix htpasswd/htdbm brown paper bag bugs - use the correct string to generate the hash from. PR 54735 - print error message instead of empty string while there, replace strdup + check for oom with apr_pstrdup

83bad90d62e8f0283585ba0d3c7ac29b6070ea6c 1425775 25-Dec-2012 sf

htdbm, htpasswd: print error message if out of memory PR: 54345

a98a8bcdaba27ec97b44c3ae9444b3134865f487 1395792 09-Oct-2012 fuankg

Removed __func__ usage which is c99.

1dd5136d67e0164e4afd723a471b86a1b7eb1874 1395256 07-Oct-2012 sf

Optionally read passwords from stdin PR: 40243 Submitted by: Adomas Paltanavicius <adomas paltanavicius gmail com>, sf

e39eb98e3ad3fbf5c34b2fa1d16861f95143e22e 1395255 07-Oct-2012 sf

add support for bcrypt PR: 49288

d6fc66efa723db8b3ee5e9fd32579bed884e4e58 1395253 07-Oct-2012 sf

Start refactoring of htpasswd and htdbm - Move many common code parts into separate source file. This adds some of htpasswd's recent improvements to htdbm. - Rework salt generation to use the full 48bit of entropy for MD5 Previously, it would only generate 2^32 different salts on a given platform. - Use apr_getopt().