New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

ECPy

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ECPy - pypi Package Compare versions

Comparing version
1.0.0
to
1.0.1
+16
-2
PKG-INFO
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 @@ =============

@@ -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)