secp256k1zkp 0.9.1 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/secp256k1zkp/secp256k1zkp.c +2 -1
- data/lib/secp256k1zkp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90d4e882b70ea376377b9388e8c1020e06fbb696
|
4
|
+
data.tar.gz: 36d462d75514cf76ac8a366d4bbdcc7838e706f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe741e6e78fd7fcb300e37725bc8b9ac3320b44e85af75ee8438cec203947bae476d8e5ba145c2dba4608684baceb8e8d043efd48f22892e86dca2fb503c269f
|
7
|
+
data.tar.gz: 4b6990004b8888bf9ae57accded553c75338c9d7096f4d63210fad622f9eb03e75de4c78cca3a1dab2e0ca232bfe6565f7c1b9c8aa19b359c4b57046abac5c19
|
@@ -379,6 +379,7 @@ static VALUE dm_context_pedersen_blind_sum(VALUE self, VALUE blinds_in, VALUE no
|
|
379
379
|
{
|
380
380
|
rb_struct_context *context;
|
381
381
|
long blinds_in_size;
|
382
|
+
long i;
|
382
383
|
rb_struct_blind_factor_type result = {
|
383
384
|
0,
|
384
385
|
};
|
@@ -393,7 +394,7 @@ static VALUE dm_context_pedersen_blind_sum(VALUE self, VALUE blinds_in, VALUE no
|
|
393
394
|
return Qnil;
|
394
395
|
}
|
395
396
|
const unsigned char *blinds[blinds_in_size];
|
396
|
-
for (
|
397
|
+
for (i = 0; i < blinds_in_size; ++i)
|
397
398
|
{
|
398
399
|
VALUE blind_factor = rb_ary_entry(blinds_in, i);
|
399
400
|
SafeStringValue(blind_factor);
|
data/lib/secp256k1zkp/version.rb
CHANGED