<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libcrypto/ts/ts.h, branch OPENBSD_6_8_BASE</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=OPENBSD_6_8_BASE</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=OPENBSD_6_8_BASE'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2018-05-13T15:35:46+00:00</updated>
<entry>
<title>Add const to the ASN1_OBJECT argument of TS_TST_INFO_get_ext_by_OBJ(3).</title>
<updated>2018-05-13T15:35:46+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2018-05-13T15:35:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=6db451f380877c4c494a94c071855240ac202477'/>
<id>urn:sha1:6db451f380877c4c494a94c071855240ac202477</id>
<content type='text'>
Should have been part of the previous commit. Omission noted by schwarze.

tested in bulk build by sthen
ok jsing
</content>
</entry>
<entry>
<title>Add const qualifier to the ASN1_OBJ * argument of</title>
<updated>2018-05-13T15:04:05+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2018-05-13T15:04:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=fde187bda5ffeae71c1695aa3de4a72d94f51052'/>
<id>urn:sha1:fde187bda5ffeae71c1695aa3de4a72d94f51052</id>
<content type='text'>
TS_REQ_get_ext_by_OBJ(3), TS_REQ_set_policy_id(3),
TS_RESP_CTX_add_policy(3), TS_RESP_CTX_set_def_policy(3),
and TS_TST_INFO_get_ext_by_OBJ(3)

tested in a bulk by sthen
ok jsing
</content>
</entry>
<entry>
<title>Remove all DECLARE_ASN1_SET_OF macro usage - since 2000 these have been</title>
<updated>2016-12-27T16:05:57+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2016-12-27T16:05:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=0bde81f3db44da2391092cc43925c8351096c73c'/>
<id>urn:sha1:0bde81f3db44da2391092cc43925c8351096c73c</id>
<content type='text'>
nothing but markers for utils/mkstack.pl... and we removed the code that
generated more macros from these markers in 2014.
</content>
</entry>
<entry>
<title>Explicitly include &lt;openssl/opensslconf.h&gt; in every file that references</title>
<updated>2014-07-10T22:45:58+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2014-07-10T22:45:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=62348213609ef233110561d1a6ed67ad66df1c7e'/>
<id>urn:sha1:62348213609ef233110561d1a6ed67ad66df1c7e</id>
<content type='text'>
an OPENSSL_NO_* define. This avoids relying on something else pulling it
in for us, plus it fixes several cases where the #ifndef OPENSSL_NO_XYZ is
never going to do anything, since OPENSSL_NO_XYZ will never defined, due
to the fact that opensslconf.h has not been included.

This also includes some miscellaneous sorting/tidying of headers.
</content>
</entry>
<entry>
<title>tags as requested by miod and tedu</title>
<updated>2014-06-12T15:49:31+00:00</updated>
<author>
<name>deraadt</name>
<email></email>
</author>
<published>2014-06-12T15:49:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=59f4f2c61d71e266d37dd2fc97615b3fd35b4721'/>
<id>urn:sha1:59f4f2c61d71e266d37dd2fc97615b3fd35b4721</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix a Y2038 problem, by conversion of long to time_t.</title>
<updated>2014-05-27T21:29:43+00:00</updated>
<author>
<name>deraadt</name>
<email></email>
</author>
<published>2014-05-27T21:29:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=1c862900728cf1edc28b0ebf785abff750f14c40'/>
<id>urn:sha1:1c862900728cf1edc28b0ebf785abff750f14c40</id>
<content type='text'>
The TS_RESP_CTX_set_time_cb() API gets removed. Nothing in the greater
ecosystem ever calls it.  This API needs to be removed, because if
anyone ever calls on a BE 32 system assuming long rather than time_t,
it will be dangerously incompatible.

ok miod guenther
</content>
</entry>
<entry>
<title>Remove WIN32, WIN64 and MINGW32 tentacles.</title>
<updated>2014-04-28T21:14:50+00:00</updated>
<author>
<name>miod</name>
<email></email>
</author>
<published>2014-04-28T21:14:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=7d7f689b1ac66273ac1487594fc4ee4ce8abf7bb'/>
<id>urn:sha1:7d7f689b1ac66273ac1487594fc4ee4ce8abf7bb</id>
<content type='text'>
Also check for _LP64 rather than __arch64__ (the former being more reliable
than __LP64__ or __arch64__) to tell 64-bit int platforms apart from 32-bit
int platforms.

Loosely based upon a diff from Martijn van Duren on tech@
</content>
</entry>
<entry>
<title>KNF.</title>
<updated>2014-04-21T16:32:06+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2014-04-21T16:32:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=d38038d391733e01f20761a13d2e7f39dd1495fa'/>
<id>urn:sha1:d38038d391733e01f20761a13d2e7f39dd1495fa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Cope with the removal of openssl/symhacks.h</title>
<updated>2014-04-13T23:50:03+00:00</updated>
<author>
<name>deraadt</name>
<email></email>
</author>
<published>2014-04-13T23:50:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=c25e862c375209c119ed7f44041371dc8f6488a8'/>
<id>urn:sha1:c25e862c375209c119ed7f44041371dc8f6488a8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>import OpenSSL-1.0.1c</title>
<updated>2012-10-13T21:23:50+00:00</updated>
<author>
<name>djm</name>
<email></email>
</author>
<published>2012-10-13T21:23:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=228cae30b117c2493f69ad3c195341cd6ec8d430'/>
<id>urn:sha1:228cae30b117c2493f69ad3c195341cd6ec8d430</id>
<content type='text'>
</content>
</entry>
</feed>
