ecdsa_signature 0.1.0 → 0.2.0

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: 99257d71d7c38f3c176509d0e1285b8dd36f161c
4
- data.tar.gz: 9b4e74514ac157416bcab170e62299c521bf1493
3
+ metadata.gz: f4c5b3fce8b378e142e1d1840229e9a411a74663
4
+ data.tar.gz: 43caff6a780d11ba0e14c1580c2d7c6d3516d75c
5
5
  SHA512:
6
- metadata.gz: 3c1ede846255d74467960dd9e25a1d203d153c803b4dba825c7d8516cb27477c34a330d3e40c89c43cafec8c54768add8e1756548a0be777588d0295d810127c
7
- data.tar.gz: 39a754584a7600cdf419ad985bc74482009636a74cf42fa94fcf5f3b72e36d689483aa8a95196ec04b272810ee3155a4343c20f69d791090d9181cba57557f40
6
+ metadata.gz: 760eefaba278c4e79431f4a6bfa0c71090c2b3d6feeaee7d609255966efb8da2733a5b2d9b23aca35365ce4cb08a28c394f3df3120b1ec37e804d2c1bd23bbde
7
+ data.tar.gz: 0b00dbb7d98a795927006aff26dcc960f378a2080559d07116d65d4df1b65d0799312946cfac9e1fb940813d6315af080a5ed6cc93a80cbdc3afd804fcf3fc93
data/README.md CHANGED
@@ -22,7 +22,7 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
- ecdsa = EcdsaSignature::Digest.new key
25
+ ecdsa = EcdsaSignature::Auth.new key
26
26
  ecdsa.sign(data)
27
27
 
28
28
  ## Development
@@ -5,7 +5,7 @@ require 'securerandom'
5
5
 
6
6
  module EcdsaSignature
7
7
 
8
- class Digest
8
+ class Auth
9
9
 
10
10
  def initialize(key)
11
11
  @key = key
@@ -1,3 +1,3 @@
1
1
  module EcdsaSignature
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecdsa_signature
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - manikimpinge