<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib/libcrypt/crypt.3, branch release/13.1.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=release%2F13.1.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=release%2F13.1.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2019-05-27T06:37:23Z</updated>
<entry>
<title>Chase r261913: hardcoded default crypt(3) algorithm is SHA-512 when DES</title>
<updated>2019-05-27T06:37:23Z</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2019-05-27T06:37:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a6c0c8240685d6bb689b2b0ce1e0e69ea7ec051c'/>
<id>urn:sha1:a6c0c8240685d6bb689b2b0ce1e0e69ea7ec051c</id>
<content type='text'>
is not available.

Submitted by:	Ali Mashtizadeh &lt;ali mashtizadeh.com&gt;
MFC after:	3 days
</content>
</entry>
<entry>
<title>Renumber copyright clause 4</title>
<updated>2017-02-28T23:42:47Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2017-02-28T23:42:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=fbbd9655e5107c68e4e0146ff22b73d7350475bc'/>
<id>urn:sha1:fbbd9655e5107c68e4e0146ff22b73d7350475bc</id>
<content type='text'>
Renumber cluase 4 to 3, per what everybody else did when BSD granted
them permission to remove clause 3. My insistance on keeping the same
numbering for legal reasons is too pedantic, so give up on that point.

Submitted by:	Jan Schaumann &lt;jschauma@stevens.edu&gt;
Pull Request:	https://github.com/freebsd/freebsd/pull/96
</content>
</entry>
<entry>
<title>Make libcrypt thread-safe. Add crypt_r(3).</title>
<updated>2016-08-10T15:16:28Z</updated>
<author>
<name>Ed Schouten</name>
<email>ed@FreeBSD.org</email>
</author>
<published>2016-08-10T15:16:28Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=5f521d7ba72145092ea23ff6081d8791ad6c1f9d'/>
<id>urn:sha1:5f521d7ba72145092ea23ff6081d8791ad6c1f9d</id>
<content type='text'>
glibc has a pretty nice function called crypt_r(3), which is nothing
more than crypt(3), but thread-safe. It accomplishes this by introducing
a 'struct crypt_data' structure that contains a buffer that is large
enough to hold the resulting string.

Let's go ahead and also add this function. It would be a shame if a
useful function like this wouldn't be usable in multithreaded apps.
Refactor crypt.c and all of the backends to no longer declare static
arrays, but write their output in a provided buffer.

There is no need to do any buffer length computation here, as we'll just
need to ensure that 'struct crypt_data' is large enough, which it is.
_PASSWORD_LEN is defined to 128 bytes, but in this case I'm picking 256,
as this is going to be part of the actual ABI.

Differential Revision:	https://reviews.freebsd.org/D7306
</content>
</entry>
<entry>
<title>use .Mt to mark up email addresses consistently (part3)</title>
<updated>2014-06-23T08:23:05Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2014-06-23T08:23:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=2b7af31cf5e70677f52214702a95d4225564c52d'/>
<id>urn:sha1:2b7af31cf5e70677f52214702a95d4225564c52d</id>
<content type='text'>
PR:		191174
Submitted by:	Franco Fichtner  &lt;franco at lastsummer.de&gt;
</content>
</entry>
<entry>
<title>various formating fixes, use NUL for NUL bytes..</title>
<updated>2014-03-09T07:45:59Z</updated>
<author>
<name>John-Mark Gurney</name>
<email>jmg@FreeBSD.org</email>
</author>
<published>2014-03-09T07:45:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=41f554961d958518e5bec1848d184a0375ab762f'/>
<id>urn:sha1:41f554961d958518e5bec1848d184a0375ab762f</id>
<content type='text'>
drop out dated perf numbers (can't imagine people are still running
Pentium MMX 166's anymore)...

bump date...

drop max length of salt of 8 since _PASSWORD_LEN is now large, 128..
and state the max length of the salt depends upon the module,
sha-{256,512} have a max salt of 16..

recommend 8 characters of salt instead of just 2...

MFC after:	1 week
</content>
</entry>
<entry>
<title>Stop using auth_getval() now that it always returns NULL.  Instead,</title>
<updated>2012-06-12T17:14:19Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2012-06-12T17:14:19Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a0ee974f0badd8a8fafb686be71a49094e2798f6'/>
<id>urn:sha1:a0ee974f0badd8a8fafb686be71a49094e2798f6</id>
<content type='text'>
hardcode the default to what it would be if we didn't hardcode it,
i.e. DES if supported and MD5 otherwise.

MFC after:	3 weeks
</content>
</entry>
<entry>
<title>mdoc: minor Bl improvements.</title>
<updated>2012-06-02T08:47:26Z</updated>
<author>
<name>Joel Dahl</name>
<email>joel@FreeBSD.org</email>
</author>
<published>2012-06-02T08:47:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=9ee2158b550b70d35c13246cf263ff24d283e062'/>
<id>urn:sha1:9ee2158b550b70d35c13246cf263ff24d283e062</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make the item numbers match the crypt magic number</title>
<updated>2012-04-11T14:12:28Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2012-04-11T14:12:28Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=b54c79e15f7c76148b33d604e5cec2fadf4d46ac'/>
<id>urn:sha1:b54c79e15f7c76148b33d604e5cec2fadf4d46ac</id>
<content type='text'>
PR:		docs/166497
Submitted by:	Mike Kelly &lt;pioto@pioto.org&gt;
Approved by:	cperciva
MFC after:	1 week
</content>
</entry>
<entry>
<title>Remove superfluous paragraph macro.</title>
<updated>2012-03-25T12:13:24Z</updated>
<author>
<name>Joel Dahl</name>
<email>joel@FreeBSD.org</email>
</author>
<published>2012-03-25T12:13:24Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=41949a1ed5d188c9e80c53fa5c0cff0900ab956b'/>
<id>urn:sha1:41949a1ed5d188c9e80c53fa5c0cff0900ab956b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Document SHA256/512 modes.</title>
<updated>2011-04-09T14:09:46Z</updated>
<author>
<name>Mark Murray</name>
<email>markm@FreeBSD.org</email>
</author>
<published>2011-04-09T14:09:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a5c28e29e2f183ac36013a51c06bc24a33fb92a5'/>
<id>urn:sha1:a5c28e29e2f183ac36013a51c06bc24a33fb92a5</id>
<content type='text'>
MFC after:	1 month
</content>
</entry>
</feed>
