<feed xmlns='http://www.w3.org/2005/Atom'>
<title>~steering/inspircd++.git/src/modules/m_password_hash.cpp, branch v3.0.0a5</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>https://www.cgit.space/~steering/inspircd++.git/atom/src/modules/m_password_hash.cpp?h=v3.0.0a5</id>
<link rel='self' href='https://www.cgit.space/~steering/inspircd++.git/atom/src/modules/m_password_hash.cpp?h=v3.0.0a5'/>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/'/>
<updated>2017-12-03T22:20:10Z</updated>
<entry>
<title>Clean up m_password_hash slightly.</title>
<updated>2017-12-03T22:20:10Z</updated>
<author>
<name>Peter Powell</name>
</author>
<published>2017-12-03T21:55:01Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=81869b134daf1fe9e78fa84bc605b25c74863cac'/>
<id>urn:sha1:81869b134daf1fe9e78fa84bc605b25c74863cac</id>
<content type='text'>
- 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.
</content>
</entry>
<entry>
<title>Add the override keyword in places that it is missing.</title>
<updated>2017-11-21T15:51:45Z</updated>
<author>
<name>Peter Powell</name>
</author>
<published>2017-11-21T13:05:17Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=91e0af0fc4889f20d2f63426f8fe379674fc0393'/>
<id>urn:sha1:91e0af0fc4889f20d2f63426f8fe379674fc0393</id>
<content type='text'>
GCCs warnings for this are much better than Clangs.
</content>
</entry>
<entry>
<title>Reduce std::string::substr() usage</title>
<updated>2015-01-10T14:16:03Z</updated>
<author>
<name>Attila Molnar</name>
</author>
<published>2015-01-10T14:16:03Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=47dda4f61512f6047f2b1dcccd1943aab74726e3'/>
<id>urn:sha1:47dda4f61512f6047f2b1dcccd1943aab74726e3</id>
<content type='text'>
substr() returns a new string while erase() and assign() modify the existing one
</content>
</entry>
<entry>
<title>Hashing: Redo API</title>
<updated>2014-08-04T10:38:12Z</updated>
<author>
<name>Daniel Vassdal</name>
</author>
<published>2014-07-02T18:55:33Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=5c7db14a557d7f980dfaa8c10d40c1ccc554b35d'/>
<id>urn:sha1:5c7db14a557d7f980dfaa8c10d40c1ccc554b35d</id>
<content type='text'>
* 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
</content>
</entry>
<entry>
<title>m_password_hash: Use out_size as HMAC-key length, as RFC2104 recommends</title>
<updated>2014-08-04T10:20:41Z</updated>
<author>
<name>Daniel Vassdal</name>
</author>
<published>2014-07-02T17:19:55Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=0c0a7b6404c5de51241cdaa3eb159d014ef51024'/>
<id>urn:sha1:0c0a7b6404c5de51241cdaa3eb159d014ef51024</id>
<content type='text'>
"In any case the minimal recommended length for K is L bytes (as the hash output length)."
</content>
</entry>
<entry>
<title>Use TimingSafeCompare() to compare passwords and password hashes (non-hmac only)</title>
<updated>2014-06-28T16:27:51Z</updated>
<author>
<name>Attila Molnar</name>
</author>
<published>2014-06-28T16:27:51Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=c1cc5cf147babcd834ba0dbbdd4b1c1d4ae010b6'/>
<id>urn:sha1:c1cc5cf147babcd834ba0dbbdd4b1c1d4ae010b6</id>
<content type='text'>
Issue #882
</content>
</entry>
<entry>
<title>Switch to std::string::compare() from substr() in a couple of places</title>
<updated>2014-05-26T10:07:22Z</updated>
<author>
<name>Attila Molnar</name>
</author>
<published>2014-05-26T10:07:22Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=0b3f568a7506fb7ddc9a24d6ab12a969befb923d'/>
<id>urn:sha1:0b3f568a7506fb7ddc9a24d6ab12a969befb923d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Automatically register ServiceProviders created by modules</title>
<updated>2013-09-08T15:11:08Z</updated>
<author>
<name>attilamolnar</name>
</author>
<published>2013-05-26T17:44:13Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=992674362c5f64bdb8e1942eeaa7612524529cd6'/>
<id>urn:sha1:992674362c5f64bdb8e1942eeaa7612524529cd6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace OnRehash() with ReadConfig() that is called on boot, on module load and on rehash</title>
<updated>2013-08-30T11:15:10Z</updated>
<author>
<name>attilamolnar</name>
</author>
<published>2013-08-16T10:10:55Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=c202dea024542b9c6c6b771bb9a3a081d9eacdc5'/>
<id>urn:sha1:c202dea024542b9c6c6b771bb9a3a081d9eacdc5</id>
<content type='text'>
This eliminates the need for calling OnRehash() in init()
</content>
</entry>
<entry>
<title>Automatically attach modules to events</title>
<updated>2013-08-04T14:08:57Z</updated>
<author>
<name>attilamolnar</name>
</author>
<published>2013-08-04T12:36:14Z</published>
<link rel='alternate' type='text/html' href='https://www.cgit.space/~steering/inspircd++.git/commit/?id=d24619c012b34d5a3d4cfb93e7bea3ff3d5721e7'/>
<id>urn:sha1:d24619c012b34d5a3d4cfb93e7bea3ff3d5721e7</id>
<content type='text'>
</content>
</entry>
</feed>
