0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-19 03:13:47 +02:00
construct/tools
2017-11-30 11:23:43 -08:00
..
boostrap.sh configure.ac: Send boost version to the tools build script. 2017-09-08 03:47:51 -07:00
buildjs.sh ircd::js: Upgrade SpiderMonkey to esr52 from esr45. 2017-08-23 15:25:22 -06:00
buildrocks.sh tools: Update buildrocks script; stronger version pinning. 2017-08-23 15:19:35 -06:00
doxygen.conf doxygen: Remove unnecessary graphs and other things. 2017-10-11 20:54:01 -07:00
genssl.in Just use 4k RSA certificates while at it 2013-11-19 00:59:08 +01:00
Makefile.am What is the Matrix? Control. 2017-03-10 17:51:18 -08:00
mkfingerprint.cc Convert IRCd to C++ 2016-07-22 19:46:27 -07:00
mkpasswd.cc Fix error on GCC-6 platform 2016-08-20 19:30:33 -07:00
README.mkpasswd mkpasswd: improve help and remove DES support. 2016-03-21 09:12:59 -05:00
smoketest.sh smoketest: Remove race conditions causing occasional test failures. 2014-06-12 23:43:05 +02:00
synapse.db.py tools: Add very preliminary synapse db dump tool. 2017-11-30 11:23:43 -08:00

mkpasswd.c documentation

This is documentation for the updated mkpasswd.c included with a number
of ircd, irc services, and non-IRC related programs

This version of mkpasswd can create Blowfish, MD5, SHA256, and SHA512 crypted
passwords, with either randomly generated or user provided salts.  

Options:
-x Generate a SHA256 password
-y Generate a SHA512 password
-m Generate an MD5 password
-b Generate a Blowfish password
-l Specify a length for a random MD5 or Blowfish salt
-r Specify a number of rounds for a Blowfish password
   Default 4, no more than 6 recommended
-s Specify a salt, up to 16 for MD5, SHA256, and SHA512
   up to 22 for Blowfish
-p Specify a plaintext password to use
-? Get brief help
-h Get extended help

Without the presence of any parameters, it'll generate a SHA512 hash with a
randomly generated salt and prompting for the password (without echo).

An MD5, SHA256, and SHA512 salt consists of up to 16 alphanumeric characters
(plus '.' and '/'), such as 'tGd' or 'J6d4dfG'.

A Blowfish salt consists of up to 22 alphanumeric characters (plus '.' and
'/').  Blowfish also specifies a number of rounds*, by default 4.

Blowfish may not always be available, but MD5, SHA256, and SHA512 are
guaranteed to be.

This program should work anywhere Charybdis does; if you find otherwise, file
a bug.

 * Blowfish's rounds parameter is a logarithm, not an integer value