schnorr_sig 1.1.0.1 → 1.2.0.1

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: '04096ddcd8421c7b601fa037d77fc049034203a886e2d635ee1257565ee72308'
4
- data.tar.gz: a10d6ace74b3ae9e0b07421dcf59c4c8448101529894a65c3b78355b4b3bf8d0
3
+ metadata.gz: 2168b7333b06337bd90e65f6838a59acc10f87c2101ef3a300f832546c51c2ef
4
+ data.tar.gz: 4499c662534c9c88dd5129d6922817704935be94d1266e7553abb38907e05cc1
5
5
  SHA512:
6
- metadata.gz: ee280ae97f3f823d7feb857376add0a601ff238462dff403fbba21c7fe0ff84c1918fc5886a680049b72fb85e083b59247c77c0a0aaea8c5e34015b1c6047b9c
7
- data.tar.gz: ae6818931b8244e64d658c5541985035a1f93cae17748c65a41d02514b0e932fbbee7737658ccb6ae480bf2cba1a6b8220e6b60a79f3831d7b648b9dd425bd23
6
+ metadata.gz: 9a7e5e7c1247580889901b1711a4d49dfb1d48003b8818dc0697eb7b22f2cf99488e16a1b0c1ef07b9f3b964856b2733a8bda9ddcfa38d806310090fd015945c
7
+ data.tar.gz: 34bbccee610a93c138f8a060cba1f216cc95c5129245bfa42dec820ca4eacd317461ec48026bca107b257eba5300070f7af45d75308452f22c2908a57e7f1a2c
data/README.md CHANGED
@@ -129,14 +129,9 @@ though `Random` may also be used via `NO_SECURERANDOM` environment variable.
129
129
 
130
130
  ## Enable Fast Implementation
131
131
 
132
- *The `rbsecp256k1` gem must be installed,
133
- otherwise there will be a `LoadError`.*
134
-
135
- Ensure `ENV['SCHNORR_SIG']&.downcase == 'fast'`, and then
136
- `require 'schnorr_sig'` will try the fast implementation first, before
137
- falling back to the pure implementation.
138
-
139
- After `require 'schnorr_sig'`, you can check which implementation is loaded
132
+ If the `rbsecp256k1` gem is installed and loadable, it will be loaded and used.
133
+ Otherwise, we fall back to the pure implementation. After
134
+ `require 'schnorr_sig'`, you can check which implementation is loaded
140
135
  by the presence of `SchnorrSig::Pure` or `SchnorrSig::Fast`.
141
136
 
142
137
  ### Load Directly
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0.1
1
+ 1.2.0.1
@@ -17,12 +17,6 @@ module SchnorrSig
17
17
  # Utils
18
18
  #
19
19
 
20
- # use SecureRandom unless ENV['NO_SECURERANDOM'] is nonempty
21
- def random_bytes(count)
22
- nsr = ENV['NO_SECURERANDOM']
23
- (nsr and !nsr.empty?) ? Random.bytes(count) : SecureRandom.bytes(count)
24
- end
25
-
26
20
  # int (dot) G, returns ECDSA::Point
27
21
  def point(int)
28
22
  (GROUP.generator.to_jacobian * int).to_affine # 10x faster via ecdsa_ext
@@ -38,5 +38,11 @@ module SchnorrSig
38
38
 
39
39
  # convert a hex string to a binary string
40
40
  def hex2bin(hex) = [hex].pack('H*')
41
+
42
+ # use SecureRandom unless ENV['NO_SECURERANDOM'] is nonempty
43
+ def random_bytes(count)
44
+ nsr = ENV['NO_SECURERANDOM']
45
+ (nsr and !nsr.empty?) ? Random.bytes(count) : SecureRandom.bytes(count)
46
+ end
41
47
  end
42
48
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schnorr_sig
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0.1
4
+ version: 1.2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rick Hull