<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libcrypto/md4, branch OPENBSD_7_5_BASE</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=OPENBSD_7_5_BASE</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=OPENBSD_7_5_BASE'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2023-08-10T13:41:56+00:00</updated>
<entry>
<title>Tidy includes.</title>
<updated>2023-08-10T13:41:56+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2023-08-10T13:41:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=73e49b9d9ae1fcf8b63f16388186c4518ef3269d'/>
<id>urn:sha1:73e49b9d9ae1fcf8b63f16388186c4518ef3269d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove MD32_REG_T.</title>
<updated>2023-08-10T07:15:23+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2023-08-10T07:15:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=13ecebf7d6c58d65f6df008731bbb41f4c2be2f6'/>
<id>urn:sha1:13ecebf7d6c58d65f6df008731bbb41f4c2be2f6</id>
<content type='text'>
This is a hack that is only enabled on a handful of 64 bit platforms, as
a workaround for poor compiler optimisation. If you're running an archiac
compiler on an archiac architecture, then you can deal with slightly lower
performance.

ok tb@
</content>
</entry>
<entry>
<title>Combine md4 into a single C file.</title>
<updated>2023-07-28T11:04:41+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2023-07-28T11:04:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=cc6047a4cf022212107fe26aebe50cd2ca78b787'/>
<id>urn:sha1:cc6047a4cf022212107fe26aebe50cd2ca78b787</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Mop up MD32_XARRAY from md4.</title>
<updated>2023-07-15T15:30:43+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2023-07-15T15:30:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=01d9cdcc5f5cbefb02459fe5ffea28c94c1483a3'/>
<id>urn:sha1:01d9cdcc5f5cbefb02459fe5ffea28c94c1483a3</id>
<content type='text'>
MD32_XARRAY was added as a workaround for a broken HP C compiler (circa
1999). Clean it up to simplify the code.

No change in generated assembly.
</content>
</entry>
<entry>
<title>Hide symbols in md4 and md5</title>
<updated>2023-07-08T10:45:57+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2023-07-08T10:45:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=f39cc9a337dce9d352bc1ad59efad36ab8385922'/>
<id>urn:sha1:f39cc9a337dce9d352bc1ad59efad36ab8385922</id>
<content type='text'>
ok tb@
</content>
</entry>
<entry>
<title>Hit md4 with the style(9) stick.</title>
<updated>2023-07-08T06:47:26+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2023-07-08T06:47:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=f6098b475634eb25f7e0623ad883f53499f8f77c'/>
<id>urn:sha1:f6098b475634eb25f7e0623ad883f53499f8f77c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Inline md4_local.h in md4_dgst.c.</title>
<updated>2023-07-08T06:39:19+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2023-07-08T06:39:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=ccdaf6fb1b589d5810ffaabd1e013648e8b1dcf2'/>
<id>urn:sha1:ccdaf6fb1b589d5810ffaabd1e013648e8b1dcf2</id>
<content type='text'>
md4_local.h is not really a local header, just another layer of indirection
that cannot be included by anything other than md4_dgst.c. As such, include
it directly instead.

No change in generated assembly.
</content>
</entry>
<entry>
<title>Make internal header file names consistent</title>
<updated>2022-11-26T16:08:57+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2022-11-26T16:08:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=81d98bf600a381a625eb11b39a725b08c0ba547f'/>
<id>urn:sha1:81d98bf600a381a625eb11b39a725b08c0ba547f</id>
<content type='text'>
Libcrypto currently has a mess of *_lcl.h, *_locl.h, and *_local.h names
used for internal headers. Move all these headers we inherited from
OpenSSL to *_local.h, reserving the name *_internal.h for our own code.
Similarly, move dtls_locl.h and ssl_locl.h to dtls_local and ssl_local.h.
constant_time_locl.h is moved to constant_time.h since it's special.

Adjust all .c files in libcrypto, libssl and regress.

The diff is mechanical with the exception of tls13_quic.c, where
#include &lt;ssl_locl.h&gt; was fixed manually.

discussed with jsing,
no objection bcook
</content>
</entry>
<entry>
<title>Explicitly export a list of symbols from libcrypto.</title>
<updated>2016-12-21T15:49:29+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2016-12-21T15:49:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=18adabd97858ed28289c9dc31e8042c515840be4'/>
<id>urn:sha1:18adabd97858ed28289c9dc31e8042c515840be4</id>
<content type='text'>
Move the "internal" BN functions from bn.h to bn_lcl.h and stop exporting
the bn_* symbols. These are documented as only being intended for internal
use, so why they were placed in a public header is beyond me...

This hides 363 previously exported symbols, most of which exist in headers
that are not installed and were never intended to be public. This also
removes a few crusty old things that should have died long ago (like
_ossl_old_des_read_pw). But don't worry... there are still 3451 symbols
exported from the library.

With input and testing from inoguchi@.

ok beck@ inoguchi@
</content>
</entry>
<entry>
<title>Temporarily revive MD4 for MS CHAP support.</title>
<updated>2015-09-14T01:45:03+00:00</updated>
<author>
<name>doug</name>
<email></email>
</author>
<published>2015-09-14T01:45:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=ea990ff7851a189e7a61b56357a6d6e0de88a040'/>
<id>urn:sha1:ea990ff7851a189e7a61b56357a6d6e0de88a040</id>
<content type='text'>
</content>
</entry>
</feed>
