<feed xmlns='http://www.w3.org/2005/Atom'>
<title>wireguard-openbsd/lib/libcrypto, branch master</title>
<subtitle>WireGuard implementation for the OpenBSD kernel</subtitle>
<id>https://git.zx2c4.com/wireguard-openbsd/atom/lib/libcrypto?h=master</id>
<link rel='self' href='https://git.zx2c4.com/wireguard-openbsd/atom/lib/libcrypto?h=master'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/'/>
<updated>2021-03-31T17:02:18Z</updated>
<entry>
<title>Bump minors after symbol addition</title>
<updated>2021-03-31T17:02:18Z</updated>
<author>
<name>tb</name>
<email>tb@openbsd.org</email>
</author>
<published>2021-03-31T17:02:18Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=5625f5cae8f63347961b06e08016bbddc47693be'/>
<id>urn:sha1:5625f5cae8f63347961b06e08016bbddc47693be</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Expose various DTLSv1.2 specific functions and defines</title>
<updated>2021-03-31T16:59:32Z</updated>
<author>
<name>tb</name>
<email>tb@openbsd.org</email>
</author>
<published>2021-03-31T16:59:32Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=e6d88397616a72165a937474dab56c25efd3d032'/>
<id>urn:sha1:e6d88397616a72165a937474dab56c25efd3d032</id>
<content type='text'>
ok bcook inoguchi jsing
</content>
</entry>
<entry>
<title>Provide missing prototype for d2i_DSAPrivateKey_fp(3)</title>
<updated>2021-03-31T16:51:06Z</updated>
<author>
<name>tb</name>
<email>tb@openbsd.org</email>
</author>
<published>2021-03-31T16:51:06Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=c3ab052b76109c12233f48762776fa02fc490035'/>
<id>urn:sha1:c3ab052b76109c12233f48762776fa02fc490035</id>
<content type='text'>
ok bcook inoguchi jsing
</content>
</entry>
<entry>
<title>Document EVP_PKEY_new_CMAC_key(3)</title>
<updated>2021-03-31T16:48:43Z</updated>
<author>
<name>tb</name>
<email>tb@openbsd.org</email>
</author>
<published>2021-03-31T16:48:43Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=bbed6ec81ac52fde21ea1e2e596f2265b4059b7e'/>
<id>urn:sha1:bbed6ec81ac52fde21ea1e2e596f2265b4059b7e</id>
<content type='text'>
ok bcook inoguchi jsing
</content>
</entry>
<entry>
<title>Provide EVP_PKEY_new_CMAC_key(3)</title>
<updated>2021-03-31T16:47:00Z</updated>
<author>
<name>tb</name>
<email>tb@openbsd.org</email>
</author>
<published>2021-03-31T16:47:00Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=01f300463a9cfc0059aabe3087edb65e8ae07e40'/>
<id>urn:sha1:01f300463a9cfc0059aabe3087edb65e8ae07e40</id>
<content type='text'>
ok bcook inoguchi jsing
</content>
</entry>
<entry>
<title>Prepare documenting EVP_PKEY_new_CMAC_key(3)</title>
<updated>2021-03-29T17:58:29Z</updated>
<author>
<name>tb</name>
<email>tb@openbsd.org</email>
</author>
<published>2021-03-29T17:58:29Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=a1ca96d0755f8b7b773bbab07aa456c4fb527d59'/>
<id>urn:sha1:a1ca96d0755f8b7b773bbab07aa456c4fb527d59</id>
<content type='text'>
Based on some text in OpenSSL 1.1.1's EVP_PKEY_new.pod.
</content>
</entry>
<entry>
<title>Prepare to provide EVP_PKEY_new_CMAC_key()</title>
<updated>2021-03-29T15:57:23Z</updated>
<author>
<name>tb</name>
<email>tb@openbsd.org</email>
</author>
<published>2021-03-29T15:57:23Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=581451ffca74d4080e6480118a2752b6841ff73e'/>
<id>urn:sha1:581451ffca74d4080e6480118a2752b6841ff73e</id>
<content type='text'>
sebastia ran into this when attempting to update security/hcxtools.
This will be tested via wycheproof.go once the symbol is public.

ok jsing, tested by sebastia
</content>
</entry>
<entry>
<title>Avoid mangled output in BIO_debug_callback</title>
<updated>2021-03-25T09:26:17Z</updated>
<author>
<name>tb</name>
<email>tb@openbsd.org</email>
</author>
<published>2021-03-25T09:26:17Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=386d3c6d4355c50e43164e059beaed6fb0e2fe86'/>
<id>urn:sha1:386d3c6d4355c50e43164e059beaed6fb0e2fe86</id>
<content type='text'>
Instead of blindly skipping 14 characters, we can use the return
value of snprintf() to determine how much we should skip.

From Martin Vahlensieck with minor tweaks by me
</content>
</entry>
<entry>
<title>Fix copy-paste error in previous</title>
<updated>2021-03-19T18:52:14Z</updated>
<author>
<name>tb</name>
<email>tb@openbsd.org</email>
</author>
<published>2021-03-19T18:52:14Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=74808df388a30d1f9ebf77719194a533f9041f83'/>
<id>urn:sha1:74808df388a30d1f9ebf77719194a533f9041f83</id>
<content type='text'>
Found the hard way by lists y42 org via an OCSP validation failure that
in turn caused pkg_add over TLS to fail. Detailed report by sthen.

ok sthen
</content>
</entry>
<entry>
<title>Use EXFLAG_INVALID to handle out of memory and parse errors in</title>
<updated>2021-03-13T23:01:49Z</updated>
<author>
<name>tobhe</name>
<email>tobhe@openbsd.org</email>
</author>
<published>2021-03-13T23:01:49Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-openbsd/commit/?id=3746f1b0333604aabaa52b1065fb5be48e5d6292'/>
<id>urn:sha1:3746f1b0333604aabaa52b1065fb5be48e5d6292</id>
<content type='text'>
x509v3_cache_extensions().

ok tb@
</content>
</entry>
</feed>
