<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/usr.bin/openssl/errstr.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>2023-07-23T11:20:11+00:00</updated>
<entry>
<title>Remove -stats option from openssl(1) errstr.</title>
<updated>2023-07-23T11:20:11+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2023-07-23T11:20:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=91e5b3ea5555b90293adb136335a30f71b62b6ec'/>
<id>urn:sha1:91e5b3ea5555b90293adb136335a30f71b62b6ec</id>
<content type='text'>
This is the only consumer of ERR_get_string_table(), which will go away.

ok jsing
</content>
</entry>
<entry>
<title>Rename struct ${app}_config to plain cfg</title>
<updated>2023-03-06T14:32:06+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2023-03-06T14:32:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=2ba7dcfcbc2ef5aaeb8eb14f36f83bd57c22bcae'/>
<id>urn:sha1:2ba7dcfcbc2ef5aaeb8eb14f36f83bd57c22bcae</id>
<content type='text'>
All the structs are static and we need to reach into them many times.
Having a shorter name is more concise and results in less visual clutter.
It also avoids many overlong lines and we will be able to get rid of some
unfortunate line wrapping down the road.

Discussed with jsing
</content>
</entry>
<entry>
<title>openssl: make all config structs static</title>
<updated>2023-03-05T13:12:53+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2023-03-05T13:12:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=526ac760d941819bc6d2eefe70bf7c9c5562bc26'/>
<id>urn:sha1:526ac760d941819bc6d2eefe70bf7c9c5562bc26</id>
<content type='text'>
These are per-app, so per-file. Most of them already are static, adjust
the rest of them.
</content>
</entry>
<entry>
<title>Remove the legacy interactive mode from openssl(1).</title>
<updated>2022-11-11T17:07:39+00:00</updated>
<author>
<name>joshua</name>
<email></email>
</author>
<published>2022-11-11T17:07:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=273d9e16fc9e481283c2b2302b348e4863e29f28'/>
<id>urn:sha1:273d9e16fc9e481283c2b2302b348e4863e29f28</id>
<content type='text'>
This removes the legacy interactive mode from openssl(1) since it is
rarely used, complicates the code, and has also been removed from
OpenSSL in version 3.x.x.

ok tb@ jsing@
</content>
</entry>
<entry>
<title>Mark the initialized struct options arrays as both static and const.</title>
<updated>2019-07-14T03:30:46+00:00</updated>
<author>
<name>guenther</name>
<email></email>
</author>
<published>2019-07-14T03:30:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=ce9daaa0080f6ec467441aa485eb3f11ad6fb74a'/>
<id>urn:sha1:ce9daaa0080f6ec467441aa485eb3f11ad6fb74a</id>
<content type='text'>
This moves them from .data to .data.rel.ro

ok deraadt@ inoguchi@
</content>
</entry>
<entry>
<title>Exit if a pledge call fails in non-interactive mode.</title>
<updated>2015-10-17T15:00:11+00:00</updated>
<author>
<name>doug</name>
<email></email>
</author>
<published>2015-10-17T15:00:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=db101f70294bca3ebe9eaa1f16aaae8cd872d2e4'/>
<id>urn:sha1:db101f70294bca3ebe9eaa1f16aaae8cd872d2e4</id>
<content type='text'>
ok semarie@
</content>
</entry>
<entry>
<title>Initial support for pledges in openssl(1) commands.</title>
<updated>2015-10-10T22:28:51+00:00</updated>
<author>
<name>doug</name>
<email></email>
</author>
<published>2015-10-10T22:28:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=503cf2bd70538bb9cc734a5fd58230b90be4d1d8'/>
<id>urn:sha1:503cf2bd70538bb9cc734a5fd58230b90be4d1d8</id>
<content type='text'>
openssl(1) has two mechanisms for operating: either a single execution
of one command (looking at argv[0] or argv[1]) or as an interactive
session than may execute any number of commands.

We already have a top level pledge that should cover all commands
and that's what interactive mode must continue using.  However, we can
tighten up the pledges when only executing one command.

This is an initial stab at support and may contain regressions.  Most
commands only need "stdio rpath wpath cpath".  The pledges could be
further restricted by evaluating the situation after parsing options.

deraadt@ and beck@ are roughly fine with this approach.
</content>
</entry>
<entry>
<title>Remove all duplicate prototypes for *_main functions (these are already</title>
<updated>2015-08-22T16:36:05+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2015-08-22T16:36:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=b52f06ae6cb673d9e72cbe3cc65f7c091bc9bab8'/>
<id>urn:sha1:b52f06ae6cb673d9e72cbe3cc65f7c091bc9bab8</id>
<content type='text'>
provided by progs.h). Also, move the FUNCTION type (and flags) into
openssl.c since that is the only place of use. Lastly, remove pointless
'extern' from the prototypes and use char **argv instead of char *argv[]
(the former is used elsewhere).

ok deraadt@ doug@
</content>
</entry>
<entry>
<title>Clean up and improve openssl(1) errstr:</title>
<updated>2015-04-14T10:54:40+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2015-04-14T10:54:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=7ecf4aebbd73c73fe6b624387e785602d4dacbc8'/>
<id>urn:sha1:7ecf4aebbd73c73fe6b624387e785602d4dacbc8</id>
<content type='text'>
- Use BIO_new_fp() instead of BIO_new()/BIO_set_fp() and handle NULL
  return value in a more appropriate manner.

- Use stroul() instead of sscanf() with appropriate error checking.

ok doug@
</content>
</entry>
<entry>
<title>Convert openssl(1) errstr to new option handling.</title>
<updated>2015-04-13T15:02:23+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2015-04-13T15:02:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=9d3f3524f86fbb93b06b68524420ef1cc3f211e5'/>
<id>urn:sha1:9d3f3524f86fbb93b06b68524420ef1cc3f211e5</id>
<content type='text'>
ok bcook@ doug@
</content>
</entry>
</feed>
