<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libssl/ssl_transcript.c, branch OPENBSD_7_9</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=OPENBSD_7_9</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=OPENBSD_7_9'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2022-11-26T16:08:57+00:00</updated>
<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>Convert TLS transcript from BUF_MEM to tls_buffer.</title>
<updated>2022-07-22T19:54:46+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2022-07-22T19:54:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=c31980e0fe177d86f1a68c857522cfd197f2c23d'/>
<id>urn:sha1:c31980e0fe177d86f1a68c857522cfd197f2c23d</id>
<content type='text'>
ok beck@ tb@
</content>
</entry>
<entry>
<title>Remove const from tls1_transcript_hash_value()</title>
<updated>2022-03-17T17:22:16+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2022-03-17T17:22:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=fd622b936b80ca5bea05025f6054841fdfb1996d'/>
<id>urn:sha1:fd622b936b80ca5bea05025f6054841fdfb1996d</id>
<content type='text'>
This function populates the passed *out argument, hence it should not be
marked const.

ok tb@
</content>
</entry>
<entry>
<title>Bye bye S3I.</title>
<updated>2022-02-05T14:54:10+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2022-02-05T14:54:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=a463011117e88ea3125fb580b8c6c60d68722651'/>
<id>urn:sha1:a463011117e88ea3125fb580b8c6c60d68722651</id>
<content type='text'>
S3I has served us well, however now that libssl is fully opaque it is time
to say goodbye. Aside from removing the calloc/free/memset, the rest is
mechanical sed.

ok inoguchi@ tb@
</content>
</entry>
<entry>
<title>Make local header inclusion consistent.</title>
<updated>2021-05-16T14:10:43+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2021-05-16T14:10:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=1092b11f3cc2b89ff8b43d1ab3d0ceda6218da96'/>
<id>urn:sha1:1092b11f3cc2b89ff8b43d1ab3d0ceda6218da96</id>
<content type='text'>
Consistently include local headers in the same location, using the same
grouping/sorting across all files.
</content>
</entry>
<entry>
<title>Ensure that handshake hash is non-NULL in tls1_transcript_hash_value().</title>
<updated>2021-05-02T16:00:33+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2021-05-02T16:00:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=00bc6c73637e1a664708ad0a6fd34c5b904543de'/>
<id>urn:sha1:00bc6c73637e1a664708ad0a6fd34c5b904543de</id>
<content type='text'>
There are several paths where a subtle bug could result in
tls1_transcript_hash_value() being called with a NULL handshake hash - add
an explicit check for this case. As noted by tb@, due to the wonders of
the libcrypto EVP APIs, combined with integer promotion, we already have
a NULL check - this one is just more obvious.

ok tb@
</content>
</entry>
<entry>
<title>whitespace</title>
<updated>2021-04-23T18:30:18+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2021-04-23T18:30:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=34c77693013fecba8b2e2600d422f246a51323af'/>
<id>urn:sha1:34c77693013fecba8b2e2600d422f246a51323af</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Provide tls1_transcript_unfreeze() to avoid the need for manual flags</title>
<updated>2020-02-05T16:47:34+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2020-02-05T16:47:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=35ac06cb649d21eaa5d022681827e3178eea7f72'/>
<id>urn:sha1:35ac06cb649d21eaa5d022681827e3178eea7f72</id>
<content type='text'>
mangling.

ok tb@
</content>
</entry>
<entry>
<title>Rename the file that contains the transcript handling code.</title>
<updated>2019-02-09T15:30:52+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2019-02-09T15:30:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=554999fb07e18f1178489022d8f51f04ebc732a4'/>
<id>urn:sha1:554999fb07e18f1178489022d8f51f04ebc732a4</id>
<content type='text'>
ok inoguchi@ tb@
</content>
</entry>
</feed>
