<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/regress/lib/libssl, branch bluhm_20181106</title>
<subtitle>A mirror of https://github.com/libressl/openbsd.git
</subtitle>
<id>https://git.lua4.win/openbsd/atom?h=bluhm_20181106</id>
<link rel='self' href='https://git.lua4.win/openbsd/atom?h=bluhm_20181106'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/'/>
<updated>2018-11-07T01:08:50+00:00</updated>
<entry>
<title>This commit was manufactured by cvs2git to create tag 'bluhm_20181106'.</title>
<updated>2018-11-07T01:08:50+00:00</updated>
<author>
<name>cvs2svn</name>
<email>admin@example.com</email>
</author>
<published>2018-11-07T01:08:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=2035faf3f8aa95b888d9416c3cc7328c0ea18beb'/>
<id>urn:sha1:2035faf3f8aa95b888d9416c3cc7328c0ea18beb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Test TLS interoperability between LibreSSL and OpenSSL.</title>
<updated>2018-11-07T01:08:49+00:00</updated>
<author>
<name>bluhm</name>
<email></email>
</author>
<published>2018-11-07T01:08:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=be03b61c1b8f59ccdd34dbe5f6c6b30de697d28b'/>
<id>urn:sha1:be03b61c1b8f59ccdd34dbe5f6c6b30de697d28b</id>
<content type='text'>
Implement simple SSL client and server in C.  Create four binaries
by linking them with LibreSSL or OpenSSL.  This way API compatibility
is tested.  Connect and accept with netcat to test protocol
compatibility with libtls.

Currently OpenSSL 1.0.2p from ports is used.  Plan is to move to
OpenSSL 1.1 and and test TLS 1.3.

idea from beck@; help from jsing@
</content>
</entry>
<entry>
<title>Add TLSv1.3 to version regress tests.</title>
<updated>2018-11-06T01:40:57+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2018-11-06T01:40:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=438513f64278dadec7e64ccd0ef2e414ce550541'/>
<id>urn:sha1:438513f64278dadec7e64ccd0ef2e414ce550541</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Unbreak regress following Supported Elliptic Curve extension rename.</title>
<updated>2018-11-06T01:19:35+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2018-11-06T01:19:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=44cfa3f8a76423f4f1b5cd50615a5e8e1357fd44'/>
<id>urn:sha1:44cfa3f8a76423f4f1b5cd50615a5e8e1357fd44</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add regress coverage for CBB_add_u32().</title>
<updated>2018-08-16T18:40:19+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2018-08-16T18:40:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=0b2a20c61b03af89737ab0f70a52c88a27bbd032'/>
<id>urn:sha1:0b2a20c61b03af89737ab0f70a52c88a27bbd032</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update regress for DES cipher suite removal.</title>
<updated>2018-06-02T16:35:02+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2018-06-02T16:35:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=97d11dcba9838494dd405e1464e24ab7a6350104'/>
<id>urn:sha1:97d11dcba9838494dd405e1464e24ab7a6350104</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Zero the client random so that it is easier to spot unintended differences.</title>
<updated>2018-06-02T15:51:43+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2018-06-02T15:51:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=43a458ea42e914e0cf7a1e28dfd3a8abb6e240c0'/>
<id>urn:sha1:43a458ea42e914e0cf7a1e28dfd3a8abb6e240c0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Provide SSL_CTX_get_min_proto_version and SSL_CTX_get_max_proto_version</title>
<updated>2018-03-15T12:27:01+00:00</updated>
<author>
<name>jca</name>
<email></email>
</author>
<published>2018-03-15T12:27:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=31b9fe82ec87b1b7aac99b7c06baa2f6f85f1204'/>
<id>urn:sha1:31b9fe82ec87b1b7aac99b7c06baa2f6f85f1204</id>
<content type='text'>
We already provided the setters, so also provide the getters like
OpenSSL does.  Addition prompted by the use of those functions in recent
openvpn releases.

manpage diff from schwarze@ (thanks!) with input from jsing@, ok tb@
jsing@
</content>
</entry>
<entry>
<title>Update regress to use tlsext_serverhello_parse().</title>
<updated>2018-02-08T11:31:00+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2018-02-08T11:31:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=3e6ade186e34c4d501ee718ca12e393d7173d92b'/>
<id>urn:sha1:3e6ade186e34c4d501ee718ca12e393d7173d92b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update regress to match removal of ssl_parse_clienthello_tlsext().</title>
<updated>2018-01-27T15:30:43+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2018-01-27T15:30:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=56e9c256f271299936f5538160df63d9ae637646'/>
<id>urn:sha1:56e9c256f271299936f5538160df63d9ae637646</id>
<content type='text'>
</content>
</entry>
</feed>
