| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Convert log calls to use fmtlib format strings | 2023-01-24 | 1 | -1/+1 | |
| * | Avoid copying shared_ptr<ConfigTag> when not necessary. | 2023-01-10 | 1 | -1/+1 | |
| * | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+1 | |
| * | | Remove the unused Extensible* parameter to PassCompare/OnPassCompare. | 2022-12-10 | 1 | -1/+1 | |
| * | | Yet more stylistic fixes. | 2022-12-01 | 1 | -1/+2 | |
| * | | Make internal penalty be specified in millisecs instead of seconds.•••This removes the need to multiply it later. | 2022-09-09 | 1 | -1/+1 | |
| * | | Switch from NULL to nullptr. | 2022-07-22 | 1 | -1/+1 | |
| * | | Rewrite logging calls to use the new APIs. | 2022-05-01 | 1 | -1/+1 | |
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -3/+3 | |
| * | | Mark all command classes as final. | 2021-10-01 | 1 | -1/+2 | |
| * | | Mark all module classes as final. | 2021-10-01 | 1 | -1/+2 | |
| * | | Merge branch 'insp3' into master. | 2021-08-28 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-08-27 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-07-24 | 1 | -3/+11 | |
| |\| | |||||
| | * | Handle exceptions from hash providers in password_hash. | 2021-07-19 | 1 | -3/+11 | |
| * | | Merge branch 'insp3' into master. | 2021-07-01 | 1 | -1/+7 | |
| |\| | |||||
| | * | Allow making the MKPASSWD command only usable by opers. | 2021-06-21 | 1 | -0/+6 | |
| * | | Get rid of even more pointless copy/paste comments. | 2021-05-19 | 1 | -2/+0 | |
| * | | Refactor the Base64 encoding and decoding functions. | 2021-05-10 | 1 | -3/+3 | |
| * | | Merge tag 'v3.8.1' into master. | 2020-11-20 | 1 | -2/+2 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-11-20 | 1 | -1/+1 | |
| | * | Update the module descriptions. | 2020-11-20 | 1 | -1/+1 | |
| * | | Convert CmdResult to an 8-bit strongly typed enum. | 2020-10-27 | 1 | -5/+5 | |
| * | | Alow modules to specify multiple syntax lines. | 2020-04-14 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2020-04-11 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update the module descriptions using mkversion. | 2020-04-10 | 1 | -1/+1 | |
| * | | Improve storage of module description, flags, and link data. | 2020-04-11 | 1 | -6/+2 | |
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 1 | -1/+7 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 1 | -1/+7 | |
| * | | Merge branch 'insp3' into master. | 2019-03-30 | 1 | -1/+1 | |
| |\| | |||||
| | * | Various text improvements: consistency, syntax, help and doc updates/fixes. | 2019-02-18 | 1 | -1/+1 | |
| * | | ModuleManager: remove fakederef. | 2019-02-07 | 1 | -4/+4 | |
| * | | LogManager: remove fakederef. | 2019-02-07 | 1 | -1/+1 | |
| * | | Replace the override macro with the override keyword. | 2019-01-25 | 1 | -3/+3 | |
| |/ | |||||
| * | Use CommandBase::Params instead of std::vector<std::string>.•••This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. | 2018-07-26 | 1 | -1/+1 | |
| * | Clean up m_password_hash slightly.•••- Get rid of MakeHash and inline the logic into the actual handler. - Return CMD_FAILURE when password hashing fails for some reason. - Change the module name and description to be more accurate. | 2017-12-03 | 1 | -26/+21 | |
| * | Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs. | 2017-11-21 | 1 | -1/+1 | |
| * | Reduce std::string::substr() usage•••substr() returns a new string while erase() and assign() modify the existing one | 2015-01-10 | 1 | -2/+2 | |
| * | Hashing: Redo API•••* Don't assume the printable output of hashes is hex * Add virtual Compare() function, usable for KDFs like BCrypt Some changes and bugfixes are by @attilamolnar, original PR #767 | 2014-08-04 | 1 | -3/+16 | |
| * | m_password_hash: Use out_size as HMAC-key length, as RFC2104 recommends•••"In any case the minimal recommended length for K is L bytes (as the hash output length)." | 2014-08-04 | 1 | -1/+1 | |
| * | Use TimingSafeCompare() to compare passwords and password hashes (non-hmac only)•••Issue #882 | 2014-06-28 | 1 | -3/+3 | |
| * | Switch to std::string::compare() from substr() in a couple of places | 2014-05-26 | 1 | -2/+2 | |
| * | Automatically register ServiceProviders created by modules | 2013-09-08 | 1 | -5/+0 | |
| * | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init() | 2013-08-30 | 1 | -3/+0 | |
| * | Automatically attach modules to events | 2013-08-04 | 1 | -2/+0 | |
| * | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+0 | |
| * | Tidy up keywords on module methods.•••- Remove virtual keyword from a ton of methods which don't need it. - Add override keyword to a ton of methods which do need it. | 2013-05-15 | 1 | -3/+3 | |
| * | Add method for writing server notices.•••This allows us to send a server notice to a user without worrying about whether they are registered or not. If a user receives a server notice and they are not registered then the nickname field will contain an asterisk instead of their nick name. | 2013-05-14 | 1 | -6/+4 | |
| * | Tidy up source files:•••- Use #pragma once instead of include guards. - Move header files in src/modules to include/modules. - Fixed various spacing issues. | 2013-04-12 | 1 | -1/+1 | |
