ECPy
Advanced tools
+16
-2
| Metadata-Version: 1.1 | ||
| Name: ECPy | ||
| Version: 1.0.0 | ||
| Version: 1.0.1 | ||
| Summary: Pure Pyhton Elliptic Curve Library | ||
@@ -16,3 +16,3 @@ Home-page: https://github.com/cslashm/ECPy | ||
| Full html documentation is available `here <https://ubinity.github.com/ECPy>`_. | ||
| Full html documentation is available `here <https://cslashm.github.com/ECPy>`_. | ||
@@ -56,3 +56,17 @@ | ||
| History | ||
| ======= | ||
| 1.0.1beta | ||
| --------- | ||
| Merge PR11, fixing an overflow with secp521k1 | ||
| 1.0.0beta | ||
| --------- | ||
| Initial 1.x series (Beta) | ||
| Quick Install | ||
@@ -59,0 +73,0 @@ ============= |
+15
-1
@@ -8,3 +8,3 @@ ECPy | ||
| Full html documentation is available `here <https://ubinity.github.com/ECPy>`_. | ||
| Full html documentation is available `here <https://cslashm.github.com/ECPy>`_. | ||
@@ -48,3 +48,17 @@ | ||
| History | ||
| ======= | ||
| 1.0.1beta | ||
| --------- | ||
| Merge PR11, fixing an overflow with secp521k1 | ||
| 1.0.0beta | ||
| --------- | ||
| Initial 1.x series (Beta) | ||
| Quick Install | ||
@@ -51,0 +65,0 @@ ============= |
+1
-1
@@ -29,3 +29,3 @@ # Copyright 2016 Cedric Mesnil, Ubinity SAS | ||
| setup(name='ECPy', | ||
| version='1.0.0', | ||
| version='1.0.1', | ||
| description='Pure Pyhton Elliptic Curve Library', | ||
@@ -32,0 +32,0 @@ long_description=long_description, |
@@ -354,3 +354,3 @@ # encoding: UTF-8 | ||
| """ | ||
| size = self.size>>3 | ||
| size = self.size+7 >> 3 | ||
| x = bytearray(P.x.to_bytes(size,'big')) | ||
@@ -376,3 +376,3 @@ y = bytearray(P.y.to_bytes(size,'big')) | ||
| """ | ||
| size = self.size>>3 | ||
| size = self.size+7 >> 3 | ||
| xy = bytearray(eP) | ||
@@ -801,3 +801,3 @@ if xy[0] == 2 or xy[0] == 3: | ||
| """ | ||
| size = self.size>>3 | ||
| size = self.size+7 >> 3 | ||
| x = bytearray(P.x.to_bytes(size,'little')) | ||
@@ -804,0 +804,0 @@ return bytes(x) |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
139249
0.28%