<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libcrypto/ui, 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-11-26T17:23:18+00:00</updated>
<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>Hide symbols in libcrypto/ui</title>
<updated>2022-11-12T13:16:10+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2022-11-12T13:16:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=72c3dd25803856565ae56c4caf3a753322deba65'/>
<id>urn:sha1:72c3dd25803856565ae56c4caf3a753322deba65</id>
<content type='text'>
ok jsing@
</content>
</entry>
<entry>
<title>Unbreak the tree, after the previous commit.</title>
<updated>2022-07-12T18:43:56+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2022-07-12T18:43:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=8b803997ba3a0e375884475ca58ace2454076604'/>
<id>urn:sha1:8b803997ba3a0e375884475ca58ace2454076604</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove mkerr.pl remnants from LibreSSL</title>
<updated>2022-07-12T14:42:50+00:00</updated>
<author>
<name>kn</name>
<email></email>
</author>
<published>2022-07-12T14:42:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=89e42d5857196a8071fbafb5565388d0e20ec32b'/>
<id>urn:sha1:89e42d5857196a8071fbafb5565388d0e20ec32b</id>
<content type='text'>
This script is not used at all and files are edited by hand instead.
Thus remove misleading comments incl. the obsolete script/config.

Feedback OK jsing tb
</content>
</entry>
<entry>
<title>KNF for a few comments and indent a label</title>
<updated>2020-09-25T11:25:31+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2020-09-25T11:25:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=595cb14b635063eb152a7a571795b041671c0869'/>
<id>urn:sha1:595cb14b635063eb152a7a571795b041671c0869</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove some dangling elses for consistency with the rest of the file</title>
<updated>2020-09-25T11:17:52+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2020-09-25T11:17:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=1efcbc50096abcd1a19ce4d45d4d127e06e04413'/>
<id>urn:sha1:1efcbc50096abcd1a19ce4d45d4d127e06e04413</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Simplify UI_new_method()</title>
<updated>2020-09-25T11:05:21+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2020-09-25T11:05:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=66d1ad87ddaa338c343987d00bcc03cf1d438b4a'/>
<id>urn:sha1:66d1ad87ddaa338c343987d00bcc03cf1d438b4a</id>
<content type='text'>
Use calloc() instead of malloc() and setting all members manually to 0.
Avoid unnecessary else branch.
</content>
</entry>
<entry>
<title>Move variable declaration to the top of UI_set_result and ditch</title>
<updated>2020-09-25T10:56:36+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2020-09-25T10:56:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=1b9a5c6ef789bd22c50707defa5b78bfdc8d6fec'/>
<id>urn:sha1:1b9a5c6ef789bd22c50707defa5b78bfdc8d6fec</id>
<content type='text'>
a pointless local scope.

suggested by jsing
</content>
</entry>
<entry>
<title>The default branch of a switch somehow got moved inside of a pointless</title>
<updated>2020-09-25T10:50:26+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2020-09-25T10:50:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=b0df497f3e068a862fde134eaf345ace1b76bb36'/>
<id>urn:sha1:b0df497f3e068a862fde134eaf345ace1b76bb36</id>
<content type='text'>
local scope of a case branch. Move it into the proper location.

No binary change on amd64.

"sure" jsing
</content>
</entry>
</feed>
