ed25519 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +5 -3
- data/CHANGES.md +7 -0
- data/Gemfile +1 -1
- data/README.md +8 -1
- data/ed25519.gemspec +1 -1
- data/lib/ed25519/version.rb +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e67765f56c7c630d3b6427abe004258d0d794ee
|
4
|
+
data.tar.gz: e8fc0671193a03268303dbf120d74e69425fb967
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 047e93244b53ef61a2ccafa36e3ace46085c451387e4e94d3b2dcd6771f1780264a4d7224f2790c1fefec71faaa354cd505a45b6b6c6babb98db4b62be6f7f65
|
7
|
+
data.tar.gz: 3e5de330935e3ea497f07262f7e1b06970e1d1be6040de63b2e1c7ef3f1abc5dd3eca75d7bf5204d6d8062b03eeed6ee6b5bb3488ff9cb595b9c26a2da8cac69
|
data/.travis.yml
CHANGED
data/CHANGES.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# [1.2.1] (2017-12-15)
|
2
|
+
|
3
|
+
[1.2.1]: https://github.com/cryptosphere/x25519/compare/v1.2.0...v1.2.1
|
4
|
+
|
5
|
+
* [#14](https://github.com/cryptosphere/ed25519/pull/14)
|
6
|
+
Support MRI 2.0+
|
7
|
+
|
1
8
|
# [1.2.0] (2017-12-15)
|
2
9
|
|
3
10
|
[1.2.0]: https://github.com/cryptosphere/x25519/compare/v1.1.0...v1.2.0
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
[build-image]: https://travis-ci.org/cryptosphere/ed25519.svg?branch=master
|
6
6
|
[build-link]: https://travis-ci.org/cryptosphere/ed25519
|
7
7
|
[docs-image]: https://img.shields.io/badge/yard-docs-blue.svg
|
8
|
-
[docs-link]: http://www.rubydoc.info/gems/ed25519/1.2.
|
8
|
+
[docs-link]: http://www.rubydoc.info/gems/ed25519/1.2.1
|
9
9
|
[license-image]: https://img.shields.io/badge/license-MIT-blue.svg
|
10
10
|
[license-link]: https://github.com/cryptosphere/ed25519/blob/master/LICENSE
|
11
11
|
|
@@ -58,6 +58,13 @@ You can read more on [Dan Bernstein's Ed25519 site](http://ed25519.cr.yp.to/).
|
|
58
58
|
|
59
59
|
[Schnorr signature]: https://en.wikipedia.org/wiki/Schnorr_signature
|
60
60
|
|
61
|
+
## Requirements
|
62
|
+
|
63
|
+
**ed25519.rb** is tested on and supported by the following platforms:
|
64
|
+
|
65
|
+
* MRI 2.0+
|
66
|
+
* JRuby 9000+
|
67
|
+
|
61
68
|
## Installation
|
62
69
|
|
63
70
|
Add this line to your application's Gemfile:
|
data/ed25519.gemspec
CHANGED
data/lib/ed25519/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ed25519
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tony Arcieri
|
@@ -14,14 +14,14 @@ dependencies:
|
|
14
14
|
name: bundler
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.16'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.16'
|
27
27
|
description: A Ruby binding to the Ed25519 elliptic curve public-key signature system
|
@@ -33,10 +33,10 @@ extensions:
|
|
33
33
|
- ext/ed25519_ref10/extconf.rb
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
-
|
37
|
-
-
|
38
|
-
-
|
39
|
-
-
|
36
|
+
- .gitignore
|
37
|
+
- .rspec
|
38
|
+
- .rubocop.yml
|
39
|
+
- .travis.yml
|
40
40
|
- CHANGES.md
|
41
41
|
- CODE_OF_CONDUCT.md
|
42
42
|
- Gemfile
|
@@ -150,17 +150,17 @@ require_paths:
|
|
150
150
|
- lib
|
151
151
|
required_ruby_version: !ruby/object:Gem::Requirement
|
152
152
|
requirements:
|
153
|
-
- -
|
153
|
+
- - '>='
|
154
154
|
- !ruby/object:Gem::Version
|
155
|
-
version: 2.
|
155
|
+
version: 2.0.0
|
156
156
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
157
157
|
requirements:
|
158
|
-
- -
|
158
|
+
- - '>='
|
159
159
|
- !ruby/object:Gem::Version
|
160
160
|
version: '0'
|
161
161
|
requirements: []
|
162
162
|
rubyforge_project:
|
163
|
-
rubygems_version: 2.
|
163
|
+
rubygems_version: 2.0.14
|
164
164
|
signing_key:
|
165
165
|
specification_version: 4
|
166
166
|
summary: An efficient digital signature library providing the Ed25519 algorithm
|