ecdsa_ext 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7deba9160e31d20d837d2fce03b555c8f9dee1cc40c1bbdb04958c0a489e1ad
4
- data.tar.gz: ec8fea9687a956a1390311257ae71b4d22bd9aea47867c8ae69310198da42deb
3
+ metadata.gz: a0f115741184aa3013de736e9693506b7c6d90191b648658ab6f3215da2172a3
4
+ data.tar.gz: d85bd0930d0c62d4abeb62445a950566d80b625339433d40eb3f9ed165c68d8a
5
5
  SHA512:
6
- metadata.gz: 4938e0327a13cfc62fe1c009d840ebe7c8a36aac30393cd72c0729b0c985ee14d92b05aaccfd0d5d9997d3e43869529de1e7f55762c527be00908f48c63419bd
7
- data.tar.gz: 63d3a4e725d737a4ba5a625ba811b448e707a5c0cb121e7546d3b9ec51caebe3f6efa8981d4f3186918ab5c56540db33fc68500b952696394dba8a744caa7674
6
+ metadata.gz: 44fbb5bef58b93924b9f5128663d83840dbe3c465fdd5c3abc36c798a34d797bf9dd98233ebc5a3260b21c323fe1466c4251282a840bd2d1e23e70d85d6f2de5
7
+ data.tar.gz: 5f31293b891b21fd42074b1d550f16ad844a5903e47be45e95c5c35ce14e38250941ac830470f707d2d990a80bf9f3db821f4f6b271d9d0cdaa38d25746ba17d
@@ -145,7 +145,14 @@ module ECDSA
145
145
 
146
146
  def ==(other)
147
147
  return false unless other.is_a?(ProjectivePoint)
148
- group == other.group && x == other.x && y == other.y && z == other.z
148
+ return true if infinity? && other.infinity?
149
+
150
+ lhs_x = field.mod(x * other.z)
151
+ rhs_x = field.mod(other.x * z)
152
+ lhs_y = field.mod(y * other.z)
153
+ rhs_y = field.mod(other.y * z)
154
+
155
+ lhs_x == rhs_x && lhs_y == rhs_y
149
156
  end
150
157
  end
151
158
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ECDSA
4
4
  module Ext
5
- VERSION = "0.1.1"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecdsa_ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - azuchi