<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libssl, branch libressl-v3.7.0</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=libressl-v3.7.0</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=libressl-v3.7.0'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2022-12-11T20:53:27+00:00</updated>
<entry>
<title>Add a small blurb on @SECLEVEL=n</title>
<updated>2022-12-11T20:53:27+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2022-12-11T20:53:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=a9e4d227bad4b465f48f4d9c9226f9465d0a6943'/>
<id>urn:sha1:a9e4d227bad4b465f48f4d9c9226f9465d0a6943</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make header guards of internal headers consistent</title>
<updated>2022-11-26T17:23:18+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2022-11-26T17:23:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=3a1908508efa61f3f77ac8036694af2f920df947'/>
<id>urn:sha1:3a1908508efa61f3f77ac8036694af2f920df947</id>
<content type='text'>
Not all of them, only those that didn't leak into a public header...
Yes.
</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>Reverse arguments in CBS_dup()</title>
<updated>2022-11-23T07:31:12+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2022-11-23T07:31:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=d91fdc3a6b61ca64e9601694d2de34d422415c6b'/>
<id>urn:sha1:d91fdc3a6b61ca64e9601694d2de34d422415c6b</id>
<content type='text'>
We want to copy the tls_content_cbs() into the cbs, not the other way around

CID 377013

ok jsing
</content>
</entry>
<entry>
<title>Bump libssl minor to match libcrypto</title>
<updated>2022-11-13T14:06:58+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2022-11-13T14:06:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=b9e55b1022b366ba5d1954e8029eeca02451c3a9'/>
<id>urn:sha1:b9e55b1022b366ba5d1954e8029eeca02451c3a9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Convert the legacy TLS stack to tls_content.</title>
<updated>2022-11-11T17:15:27+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2022-11-11T17:15:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=de50508f29672766d86ce907a002ff8fe4c49908'/>
<id>urn:sha1:de50508f29672766d86ce907a002ff8fe4c49908</id>
<content type='text'>
This converts the legacy TLS stack to tls_content - records are now
opened into a tls_content structure, rather than being written back into
the same buffer that the sealed record was read into.

This will allow for further clean up of the legacy record layer.

ok tb@
</content>
</entry>
<entry>
<title>Symbols.list: Drop comments and sort.</title>
<updated>2022-11-11T13:08:29+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2022-11-11T13:08:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=ca40b252ed3f1431ba1b5799c7114defd5830b95'/>
<id>urn:sha1:ca40b252ed3f1431ba1b5799c7114defd5830b95</id>
<content type='text'>
While grouping the API by its purpose is nice, it doesn't help much if &gt;90%
is "general API".

ok jsing
</content>
</entry>
<entry>
<title>Add support for symbol hiding disabled by default.</title>
<updated>2022-11-11T11:25:18+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2022-11-11T11:25:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=0ba6b15619d4e4feafccdbd0226ee99b70553a11'/>
<id>urn:sha1:0ba6b15619d4e4feafccdbd0226ee99b70553a11</id>
<content type='text'>
Fully explained in libcrypto/README. TL;DR make sure libcrypto
and libssl's function calls internally and to each other are via
symbol names that won't get overridden by linking other libraries.

Mostly work by guenther@, which will currently be gated behind a
build setting NAMESPACE=yes. once we convert all the symbols to
this method we will do a major bump and pick up the changes.

ok tb@ jsing@
</content>
</entry>
<entry>
<title>Use tls_buffer for alert and handshake fragments in the legacy stack.</title>
<updated>2022-11-10T18:06:37+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2022-11-10T18:06:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=89b5796e48ebf1a65b490024b25e1111aaa5d4e3'/>
<id>urn:sha1:89b5796e48ebf1a65b490024b25e1111aaa5d4e3</id>
<content type='text'>
This avoids a bunch of pointer munging and a handrolled memmove.

ok tb@
</content>
</entry>
<entry>
<title>Sync CBS_strdup() documentation update from libcrypto.</title>
<updated>2022-11-09T23:14:51+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2022-11-09T23:14:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=d89a1ecb343c2ab89fef9cffc0416fe82ae19995'/>
<id>urn:sha1:d89a1ecb343c2ab89fef9cffc0416fe82ae19995</id>
<content type='text'>
</content>
</entry>
</feed>
