<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/ecdsa.git/src/ecdsa/__init__.py, branch eddsa</title>
<subtitle>github.com: warner/python-ecdsa.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/ecdsa.git/'/>
<entry>
<title>add EdDSA support to SigningKey and VerifyingKey</title>
<updated>2021-07-29T19:18:47+00:00</updated>
<author>
<name>Hubert Kario</name>
<email>hkario@redhat.com</email>
</author>
<published>2021-07-22T17:21:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/ecdsa.git/commit/?id=5b248ac1bf4478b7b7825abbb71a0283e23091f0'/>
<id>5b248ac1bf4478b7b7825abbb71a0283e23091f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix LGTM alerts</title>
<updated>2020-12-11T01:12:45+00:00</updated>
<author>
<name>Hubert Kario</name>
<email>hubert@kario.pl</email>
</author>
<published>2020-12-11T00:36:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/ecdsa.git/commit/?id=a690d1f55ee1462838d238a49658b28c4a44ee3f'/>
<id>a690d1f55ee1462838d238a49658b28c4a44ee3f</id>
<content type='text'>
remove unused imports, bad assert methods, unused variables etc.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
remove unused imports, bad assert methods, unused variables etc.
</pre>
</div>
</content>
</entry>
<entry>
<title>update URIs and badges after migration to tlsfuzzer org</title>
<updated>2020-12-10T00:59:25+00:00</updated>
<author>
<name>Hubert Kario</name>
<email>hubert@kario.pl</email>
</author>
<published>2020-12-10T00:59:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/ecdsa.git/commit/?id=146f35d3b9aa942fedb4161dff8d165848baa2d1'/>
<id>146f35d3b9aa942fedb4161dff8d165848baa2d1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add secp160r1; fix handling curves with order &gt; p</title>
<updated>2020-12-09T18:13:43+00:00</updated>
<author>
<name>Hubert Kario</name>
<email>hubert@kario.pl</email>
</author>
<published>2020-12-09T18:13:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/ecdsa.git/commit/?id=f3607fda058986d15cb3d68bd6b9e30a52b2cf3a'/>
<id>f3607fda058986d15cb3d68bd6b9e30a52b2cf3a</id>
<content type='text'>
the secret multiplier is limited by the order of the base point, that
also informs the size of elements for the signature (as they are
calculated modulo order), but the public point is a point, so its
elements are modulo prime from the curve. The same thing applies to the
shared secret: it's just one coordinate of the point, so it's modulo p
of the curve, not modulo order of generator.

for all curves up till now the size of order and size of the prime was
the same so it worked fine, but secp160r1 is different, so it showed the
bugs

so fix this bug and add secp160r1 as the test coverage for it
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the secret multiplier is limited by the order of the base point, that
also informs the size of elements for the signature (as they are
calculated modulo order), but the public point is a point, so its
elements are modulo prime from the curve. The same thing applies to the
shared secret: it's just one coordinate of the point, so it's modulo p
of the curve, not modulo order of generator.

for all curves up till now the size of order and size of the prime was
the same so it worked fine, but secp160r1 is different, so it showed the
bugs

so fix this bug and add secp160r1 as the test coverage for it
</pre>
</div>
</content>
</entry>
<entry>
<title>add secp128r1</title>
<updated>2020-12-09T18:09:21+00:00</updated>
<author>
<name>Hubert Kario</name>
<email>hubert@kario.pl</email>
</author>
<published>2020-12-07T22:53:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/ecdsa.git/commit/?id=e74f8e6540c9a6f5a0c4bc1e186e0403948c9563'/>
<id>e74f8e6540c9a6f5a0c4bc1e186e0403948c9563</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add secp112r2</title>
<updated>2020-12-08T10:19:34+00:00</updated>
<author>
<name>Hubert Kario</name>
<email>hubert@kario.pl</email>
</author>
<published>2020-12-07T22:40:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/ecdsa.git/commit/?id=de821521cc3eafe5843557e719803537e478fb26'/>
<id>de821521cc3eafe5843557e719803537e478fb26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add secp112r1</title>
<updated>2020-12-08T10:19:34+00:00</updated>
<author>
<name>Hubert Kario</name>
<email>hubert@kario.pl</email>
</author>
<published>2020-12-07T22:27:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/ecdsa.git/commit/?id=36e2e922f9fc638338fb4364012227bf33c049cc'/>
<id>36e2e922f9fc638338fb4364012227bf33c049cc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Format with black</title>
<updated>2020-01-26T21:26:41+00:00</updated>
<author>
<name>Taneli Hukkinen</name>
<email>hukkinj1@users.noreply.github.com</email>
</author>
<published>2020-01-26T21:26:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/ecdsa.git/commit/?id=442a368bbb5d57bda94debfbb978568f65eeab41'/>
<id>442a368bbb5d57bda94debfbb978568f65eeab41</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>__init__.py: fix pyflakes</title>
<updated>2019-12-17T13:57:25+00:00</updated>
<author>
<name>Hubert Kario</name>
<email>hubert@kario.pl</email>
</author>
<published>2019-11-30T15:51:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/ecdsa.git/commit/?id=6daa6dea0b91a042bad56864bab2a6f3219fd6ea'/>
<id>6daa6dea0b91a042bad56864bab2a6f3219fd6ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add ecdh class (#149)</title>
<updated>2019-11-25T17:42:56+00:00</updated>
<author>
<name>Oleg Moiseenko</name>
<email>807634+merlokk@users.noreply.github.com</email>
</author>
<published>2019-11-25T17:42:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/ecdsa.git/commit/?id=3565f349195cc567f45ad288257059df60aba8ff'/>
<id>3565f349195cc567f45ad288257059df60aba8ff</id>
<content type='text'>
Add support for ECDH operations.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add support for ECDH operations.</pre>
</div>
</content>
</entry>
</feed>
