<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libssl/shlib_version, branch OPENBSD_5_8_BASE</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=OPENBSD_5_8_BASE</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=OPENBSD_5_8_BASE'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2015-08-02T21:54:22+00:00</updated>
<entry>
<title>This commit was manufactured by cvs2git to create tag 'OPENBSD_5_8_BASE'.</title>
<updated>2015-08-02T21:54:22+00:00</updated>
<author>
<name>cvs2svn</name>
<email>admin@example.com</email>
</author>
<published>2015-08-02T21:54:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=92262c9818409ff436c41f1e51c2cea5b227f152'/>
<id>urn:sha1:92262c9818409ff436c41f1e51c2cea5b227f152</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove OpenSSL engine RSAX.</title>
<updated>2015-07-19T22:34:27+00:00</updated>
<author>
<name>doug</name>
<email></email>
</author>
<published>2015-07-19T22:34:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=25841ddc7e1d255a907b71bc100b10c363287a75'/>
<id>urn:sha1:25841ddc7e1d255a907b71bc100b10c363287a75</id>
<content type='text'>
OpenSSL stopped building it last year and removed it this year.
Based on OpenSSL commit c436e05bdc7f49985a750df64122c960240b3ae1.

Also cranked major version in libcrypto, libssl and libtls.

"fine with me" bcook@ miod@
</content>
</entry>
<entry>
<title>Crank major and remove legacy variables.</title>
<updated>2015-07-19T06:23:51+00:00</updated>
<author>
<name>doug</name>
<email></email>
</author>
<published>2015-07-19T06:23:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=7cb9c95820759c5ea201221da59aaf72cb08d3c7'/>
<id>urn:sha1:7cb9c95820759c5ea201221da59aaf72cb08d3c7</id>
<content type='text'>
Libtls is riding this crank.

ok miod@ bcook@
</content>
</entry>
<entry>
<title>Crank major for libcrypto, ssl and tls due to MDC-2DES removal.</title>
<updated>2015-06-20T01:09:31+00:00</updated>
<author>
<name>doug</name>
<email></email>
</author>
<published>2015-06-20T01:09:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=bedaa1810c5bb6d8b84e1bec8033245abf6e95dc'/>
<id>urn:sha1:bedaa1810c5bb6d8b84e1bec8033245abf6e95dc</id>
<content type='text'>
ok miod@ jsing@
</content>
</entry>
<entry>
<title>Record inter-library dependencies between libcrypto, libssl and libtls</title>
<updated>2015-05-17T22:39:39+00:00</updated>
<author>
<name>kettenis</name>
<email></email>
</author>
<published>2015-05-17T22:39:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=c5f087c6c031837a968277278b7d6de4ae1692fb'/>
<id>urn:sha1:c5f087c6c031837a968277278b7d6de4ae1692fb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump libcrypto and libssl majors, due to various recent churn.</title>
<updated>2015-02-22T16:03:06+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2015-02-22T16:03:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=bb820e160520888599d0966ac5d4a5270c855a23'/>
<id>urn:sha1:bb820e160520888599d0966ac5d4a5270c855a23</id>
<content type='text'>
Discussed with/requested by deraadt@ at the conclusion of s2k15.
</content>
</entry>
<entry>
<title>Crank libssl major due to the recent changes and removals.</title>
<updated>2015-02-07T05:53:53+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2015-02-07T05:53:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=8cc5bf07360a506afa07682422c574b319468d02'/>
<id>urn:sha1:8cc5bf07360a506afa07682422c574b319468d02</id>
<content type='text'>
ok beck@ deraadt@ miod@
</content>
</entry>
<entry>
<title>Support CA verification in chroot'ed processes without direct file</title>
<updated>2015-01-22T09:12:57+00:00</updated>
<author>
<name>reyk</name>
<email></email>
</author>
<published>2015-01-22T09:12:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=ab992313cf0983a16f4f53aa153303043aec169f'/>
<id>urn:sha1:ab992313cf0983a16f4f53aa153303043aec169f</id>
<content type='text'>
access to the certificates.  SSL_CTX_load_verify_mem() is a frontend
to the new X509_STORE_load_mem() function that allows to load the CA
chain from a memory buffer that is holding the PEM-encoded files.
This function allows to handle the verification in privsep'ed code.

Adopted for LibreSSL based on older code from relayd (by pyr@ and myself)
With feedback and OK bluhm@
</content>
</entry>
<entry>
<title>libssl major++</title>
<updated>2014-12-10T14:59:32+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2014-12-10T14:59:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=6cc508de790e6c3b90a8cfe97b50ba5c7a7bea98'/>
<id>urn:sha1:6cc508de790e6c3b90a8cfe97b50ba5c7a7bea98</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update the GOST code in libssl, as contributed by Dmitry Eremin-Solenikov.</title>
<updated>2014-11-18T05:33:43+00:00</updated>
<author>
<name>miod</name>
<email></email>
</author>
<published>2014-11-18T05:33:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=262abb9ff4e2d2ca7a3d97ba9509d716fe37985d'/>
<id>urn:sha1:262abb9ff4e2d2ca7a3d97ba9509d716fe37985d</id>
<content type='text'>
This causes a libssl major version bump as this affects the layout of some
internal-but-unfortunately-made-visible structs.
</content>
</entry>
</feed>
