bitcoin-secp256k1 0.3.0 → 0.3.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e21f815b9177803ba6f15f7d079241407c519e4f
4
- data.tar.gz: 8680f6fbf6b26c31c1fd57c95d661d84461f4b60
3
+ metadata.gz: 83ea0fb6a6d1a3b0be7ebcd1c83bd2f516691b1e
4
+ data.tar.gz: e0dbeb775196343121cc837c82dcfb97045ffdcf
5
5
  SHA512:
6
- metadata.gz: a95d35d2c521ce99abebcf3651fe0e2f7e94dabc79b99cab45805c7854f73c90c3cf3a37a601149a443cf09bd582fa7ecbcbb5ecd7061c2fd16f42dfb07998d5
7
- data.tar.gz: 3f7e0a6e2606d35039f33c0099e6b6a5b571a2a1ed677ffc2127218f7779e69f4910676a70e52382fe76828b9a05502d2fa36d335657e1e36fe78c794edfe933
6
+ metadata.gz: b1520387c37f380e43ab7a6221d94d05ee5a7c45c39ecf0a76dccbc58e3f9b1da74fa4c459fe092b1d5367b29807ed236ae7f9459121fe8bc7fba29a44642a5e
7
+ data.tar.gz: fa38a92756ef3f55051072ee737a0d31bb71540a281a501f6b16e9c35e36ce17da3ef8c380cf185c8d03ce70cdb06c3fb1aa4660a609186ac1acc7a9e5ad1dc7
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bitcoin-secp256k1 (0.3.0)
4
+ bitcoin-secp256k1 (0.3.1)
5
5
  ffi (>= 1.9.10)
6
6
 
7
7
  GEM
@@ -34,6 +34,9 @@ module Secp256k1
34
34
  # secp256k1_context* secp256k1_context_create(unsigned int flags)
35
35
  attach_function :secp256k1_context_create, [:uint], :pointer
36
36
 
37
+ # int secp256k1_ec_pubkey_parse(const secp256k1_context* ctx, secp256k1_pubkey* pubkey, const unsigned char *input, size_t inputlen)
38
+ attach_function :secp256k1_ec_pubkey_parse, [:pointer, :pointer, :pointer, :size_t], :int
39
+
37
40
  # int secp256k1_ec_pubkey_create(const secp256k1_context* ctx, secp256k1_pubkey *pubkey, const unsigned char *seckey)
38
41
  attach_function :secp256k1_ec_pubkey_create, [:pointer, :pointer, :pointer], :int
39
42
 
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : ascii-8bit -*-
2
2
  module Secp256k1
3
- VERSION = '0.3.0'
3
+ VERSION = '0.3.1'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bitcoin-secp256k1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Xie
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-25 00:00:00.000000000 Z
11
+ date: 2016-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi