<feed xmlns='http://www.w3.org/2005/Atom'>
<title>openbsd/src/lib/libcrypto/dsa/dsa_key.c, 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-11-09T23:45:19+00:00</updated>
<entry>
<title>Initialize priv_key and pub_key on first use instead of at the top.</title>
<updated>2018-11-09T23:45:19+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2018-11-09T23:45:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=c9310e29e5625d199fa876322e1794805e1f26e2'/>
<id>urn:sha1:c9310e29e5625d199fa876322e1794805e1f26e2</id>
<content type='text'>
ok beck jsing mestre
</content>
</entry>
<entry>
<title>unrevert the use of bn_rand_interval().</title>
<updated>2018-11-06T07:02:33+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2018-11-06T07:02:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=b1f2fa8da88f8be2fe7d6d9d2b8308537fcfb408'/>
<id>urn:sha1:b1f2fa8da88f8be2fe7d6d9d2b8308537fcfb408</id>
<content type='text'>
ok beck jsing
</content>
</entry>
<entry>
<title>revert use of bn_rand_interval due to failures with ECDHE and TLS</title>
<updated>2018-11-06T02:14:39+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2018-11-06T02:14:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=2040275bab908960f255a8c01f793ac41a51b26b'/>
<id>urn:sha1:2040275bab908960f255a8c01f793ac41a51b26b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make use of bn_rand_interval() where appropriate.</title>
<updated>2018-11-05T23:54:27+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2018-11-05T23:54:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=eaddac22ab3166ef515cb4c286c0c3ed322fbe40'/>
<id>urn:sha1:eaddac22ab3166ef515cb4c286c0c3ed322fbe40</id>
<content type='text'>
ok beck jsing
</content>
</entry>
<entry>
<title>Eliminate a few "} else" branches, a few unneeded NULL checks before</title>
<updated>2018-11-05T23:50:05+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2018-11-05T23:50:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=8e9f1d9b90e9437962a4af66f58e24dd9fa2c0c7'/>
<id>urn:sha1:8e9f1d9b90e9437962a4af66f58e24dd9fa2c0c7</id>
<content type='text'>
freeing and indent nearby labels.

ok beck jsing
</content>
</entry>
<entry>
<title>Remove two unnecessary BN_FLG_CONSTTIME dances: BN_mod_exp_ct() already</title>
<updated>2018-11-05T23:46:16+00:00</updated>
<author>
<name>tb</name>
<email></email>
</author>
<published>2018-11-05T23:46:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=d84e997e985b21f7846260ada232d4d74b349e3e'/>
<id>urn:sha1:d84e997e985b21f7846260ada232d4d74b349e3e</id>
<content type='text'>
takes care of this internally.

ok beck jsing
</content>
</entry>
<entry>
<title>Make explicit _ct and _nonct versions of bn_mod_exp funcitons that</title>
<updated>2017-01-21T09:38:59+00:00</updated>
<author>
<name>beck</name>
<email></email>
</author>
<published>2017-01-21T09:38:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=a0a595cda97de2b217b0582cfa601ee4c746bfce'/>
<id>urn:sha1:a0a595cda97de2b217b0582cfa601ee4c746bfce</id>
<content type='text'>
matter for constant time, and make the public interface only used
external to the library.

This moves us to a model where the important things are constant time
versions unless you ask for them not to be, rather than the opposite.
I'll continue with this method by method.

Add regress tests for same.
ok jsing@
</content>
</entry>
<entry>
<title>Remove flags for disabling constant-time operations.</title>
<updated>2016-06-30T02:02:06+00:00</updated>
<author>
<name>bcook</name>
<email></email>
</author>
<published>2016-06-30T02:02:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=3ce2fddbbb0fbded19721d5da476dfdfecb1e48b'/>
<id>urn:sha1:3ce2fddbbb0fbded19721d5da476dfdfecb1e48b</id>
<content type='text'>
This removes support for DSA_FLAG_NO_EXP_CONSTTIME, DH_FLAG_NO_EXP_CONSTTIME,
and RSA_FLAG_NO_CONSTTIME flags, making all of these operations unconditionally
constant-time.

Based on the original patch by César Pereid.  ok beck@
</content>
</entry>
<entry>
<title>Disable DSA_FLAG_NO_EXP_CONSTTIME, always enable constant-time behavior.</title>
<updated>2016-06-21T04:16:53+00:00</updated>
<author>
<name>bcook</name>
<email></email>
</author>
<published>2016-06-21T04:16:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=91d6aae7a299dbce8aafae1d671ec0aa14c5511b'/>
<id>urn:sha1:91d6aae7a299dbce8aafae1d671ec0aa14c5511b</id>
<content type='text'>
Improved patch from Cesar Pereida. See
https://github.com/libressl-portable/openbsd/pull/61 for more details.

ok beck@
</content>
</entry>
<entry>
<title>None of these need to include &lt;openssl/rand.h&gt;</title>
<updated>2014-10-18T17:20:40+00:00</updated>
<author>
<name>jsing</name>
<email></email>
</author>
<published>2014-10-18T17:20:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/openbsd/commit/?id=0bad55f54f7132a386746f23ba4f2d106d115563'/>
<id>urn:sha1:0bad55f54f7132a386746f23ba4f2d106d115563</id>
<content type='text'>
</content>
</entry>
</feed>
