session_keys 1.0.0 → 2.0.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 +5 -5
- data/.codeclimate.yml +17 -0
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/.travis.yml +7 -3
- data/CHANGELOG.md +6 -0
- data/Gemfile +2 -0
- data/README.md +6 -42
- data/RELEASE.md +9 -40
- data/Rakefile +2 -0
- data/bin/console +1 -0
- data/lib/session_keys.rb +2 -1
- data/lib/session_keys/version.rb +3 -1
- data/session_keys.gemspec +10 -17
- metadata +30 -73
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 492fed533423f557f0649bd834bc4ce34013755357390b68d219ac377322eadf
|
4
|
+
data.tar.gz: 80dd7dc2bf69e690875a0c616ebcb7da962bf97bef04a104c881648fd26c644b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7b26489cbd83fc0280eb59de5ebe0718233f53c0d6e51709aa6ec1a05b802faf1dc6b92d15b4527d95dfb98268301550d0f169163ce510cd12be84428a8e0c0
|
7
|
+
data.tar.gz: 7bc4f325f71b443b292f81aadef08ace1654e61d9b9e3e9e146f8686fcd6c705ba7b3aa47e2cb35bdbf70a1c3217d35bd68aede0d07a8c2c589a43f8c87d78ac
|
data/.codeclimate.yml
ADDED
data/.rubocop.yml
CHANGED
@@ -743,7 +743,7 @@ Style/LineEndConcatenation:
|
|
743
743
|
line end.
|
744
744
|
Enabled: false
|
745
745
|
|
746
|
-
Style/
|
746
|
+
Style/MethodCallWithoutArgsParentheses:
|
747
747
|
Description: 'Do not use parentheses for method calls with no arguments.'
|
748
748
|
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-args-no-parens'
|
749
749
|
Enabled: false
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.6.0
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## v2.0.0 (8/23/2019)
|
4
|
+
|
5
|
+
- Update rbnacl. Now requires separate install of libsodium.
|
6
|
+
- Minor testing tweaks to modernize supported Ruby versions.
|
7
|
+
- Minor code climate lint cleanups.
|
8
|
+
|
3
9
|
## v1.0.0 (9/8/2016)
|
4
10
|
|
5
11
|
- Major refactor and simplification
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# sessionKeys (Ruby)
|
2
2
|
|
3
3
|
[](https://badge.fury.io/rb/session_keys)
|
4
|
-
[](https://gemnasium.com/github.com/grempe/session-keys-rb)
|
5
4
|
[](https://travis-ci.org/grempe/session-keys-rb)
|
6
5
|
[](https://coveralls.io/github/grempe/session-keys-rb?branch=master)
|
7
6
|
[](https://codeclimate.com/github/grempe/session-keys-rb)
|
@@ -25,25 +24,27 @@ project [grempe/session-keys-js](https://github.com/grempe/session-keys-js)
|
|
25
24
|
|
26
25
|
Add this line to your application's Gemfile:
|
27
26
|
|
28
|
-
```
|
27
|
+
```ruby
|
29
28
|
gem 'session_keys'
|
30
29
|
```
|
31
30
|
|
32
31
|
And then execute:
|
33
32
|
|
34
|
-
```
|
33
|
+
```text
|
35
34
|
$ bundle
|
36
35
|
```
|
37
36
|
|
38
37
|
Or install it yourself as:
|
39
38
|
|
40
|
-
```
|
39
|
+
```text
|
41
40
|
$ gem install session_keys
|
42
41
|
```
|
43
42
|
|
44
43
|
## Usage
|
45
44
|
|
46
|
-
```
|
45
|
+
```ruby
|
46
|
+
require 'session_keys'
|
47
|
+
|
47
48
|
SessionKeys.generate('user@example.com', 'my strong passphrase')
|
48
49
|
|
49
50
|
{
|
@@ -75,43 +76,6 @@ output.nacl_encryption_key_pairs[1]
|
|
75
76
|
output.nacl_signing_key_pairs[2]
|
76
77
|
```
|
77
78
|
|
78
|
-
### Installation Security : Signed Ruby Gem
|
79
|
-
|
80
|
-
The SessionKeys gem is cryptographically signed. To be sure the gem you install hasn’t
|
81
|
-
been tampered with you can install it using the following method:
|
82
|
-
|
83
|
-
Add required public keys (if you haven’t already) as trusted certificates
|
84
|
-
|
85
|
-
```
|
86
|
-
# Caveat: Gem certificates are trusted globally, such that adding a
|
87
|
-
# cert.pem for one gem automatically trusts all gems signed by that cert.
|
88
|
-
gem cert --add <(curl -Ls https://raw.githubusercontent.com/cryptosphere/rbnacl/master/bascule.cert)
|
89
|
-
gem cert --add <(curl -Ls https://raw.github.com/grempe/session-keys-rb/master/certs/gem-public_cert_grempe.pem)
|
90
|
-
```
|
91
|
-
|
92
|
-
To install, it is possible to specify either `HighSecurity` or `MediumSecurity`
|
93
|
-
mode. Since the `session_keys` gem depends on one or more gems that are not cryptographically
|
94
|
-
signed you will likely need to use `MediumSecurity`. You should receive a warning
|
95
|
-
if any signed gem does not match its signature.
|
96
|
-
|
97
|
-
``` text
|
98
|
-
# All dependent gems must be signed and verified.
|
99
|
-
gem install session_keys -P HighSecurity
|
100
|
-
```
|
101
|
-
|
102
|
-
``` text
|
103
|
-
# All signed dependent gems must be verified.
|
104
|
-
gem install session_keys -P MediumSecurity
|
105
|
-
```
|
106
|
-
|
107
|
-
``` text
|
108
|
-
# Same as above, except Bundler only recognizes
|
109
|
-
# the long --trust-policy flag, not the short -P
|
110
|
-
bundle --trust-policy MediumSecurity
|
111
|
-
```
|
112
|
-
|
113
|
-
You can [learn more about security and signed Ruby Gems](http://guides.rubygems.org/security/).
|
114
|
-
|
115
79
|
### Installation Security : Signed Git Commits
|
116
80
|
|
117
81
|
Most, if not all, of the commits and tags to the repository for this code are
|
data/RELEASE.md
CHANGED
@@ -18,10 +18,10 @@ $ git push
|
|
18
18
|
|
19
19
|
Check for regressions in automated tests:
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
21
|
+
- [https://travis-ci.org/grempe/session-keys-rb](https://travis-ci.org/grempe/session-keys-rb)
|
22
|
+
- [https://coveralls.io/github/grempe/session-keys-rb?branch=master](https://coveralls.io/github/grempe/session-keys-rb?branch=master)
|
23
|
+
- [https://codeclimate.com/github/grempe/session-keys-rb](https://codeclimate.com/github/grempe/session-keys-rb)
|
24
|
+
- [http://inch-ci.org/github/grempe/session-keys-rb](http://inch-ci.org/github/grempe/session-keys-rb)
|
25
25
|
|
26
26
|
## Bump Version Number and edit CHANGELOG.md
|
27
27
|
|
@@ -32,49 +32,18 @@ $ vi CHANGELOG.md
|
|
32
32
|
$ git add CHANGELOG.md
|
33
33
|
```
|
34
34
|
|
35
|
-
## Local Build and Install w/ Signed Gem
|
36
|
-
|
37
|
-
The `build` step should ask for PEM passphrase to sign gem. If it does
|
38
|
-
not ask it means that the signing cert is not present.
|
39
|
-
|
40
|
-
Add certs:
|
41
|
-
|
42
|
-
```sh
|
43
|
-
gem cert --add <(curl -Ls https://raw.github.com/grempe/session-keys-rb/master/certs/gem-public_cert_grempe.pem)
|
44
|
-
gem cert --add <(curl -Ls https://raw.githubusercontent.com/cryptosphere/rbnacl/master/bascule.cert)
|
45
|
-
```
|
46
|
-
|
47
|
-
Build:
|
48
|
-
|
49
|
-
```sh
|
50
|
-
$ rake build
|
51
|
-
Enter PEM pass phrase:
|
52
|
-
session_keys 0.1.0 built to pkg/session_keys-0.1.0.gem.
|
53
|
-
```
|
54
|
-
|
55
|
-
Install locally w/ Cert:
|
56
|
-
|
57
|
-
```sh
|
58
|
-
$ gem uninstall session_keys
|
59
|
-
$ rbenv rehash
|
60
|
-
$ gem install pkg/session_keys-0.1.0.gem -P MediumSecurity
|
61
|
-
Successfully installed session_keys-0.1.0.gem
|
62
|
-
1 gem installed
|
63
|
-
```
|
64
|
-
|
65
35
|
## Git Commit Version and CHANGELOG Changes, Tag and push to Github
|
66
36
|
|
67
37
|
```sh
|
68
|
-
$
|
69
|
-
$ git
|
70
|
-
$ git
|
71
|
-
$ git tag -s v0.1.1 -m "v0.1.1" SHA1_OF_COMMIT
|
38
|
+
$ bundle exec rake build
|
39
|
+
$ git commit -m 'Bump version v2.0.0'
|
40
|
+
$ git tag -s v2.0.0 -m "v2.0.0" SHA1_OF_COMMIT
|
72
41
|
```
|
73
42
|
|
74
43
|
Verify last commit and last tag are GPG signed:
|
75
44
|
|
76
45
|
```
|
77
|
-
$ git tag -v
|
46
|
+
$ git tag -v v2.0.0
|
78
47
|
...
|
79
48
|
gpg: Good signature from "Glenn Rempe (Code Signing Key) <glenn@rempe.us>" [ultimate]
|
80
49
|
...
|
@@ -97,7 +66,7 @@ $ git push --tags
|
|
97
66
|
## Push gem to Rubygems.org
|
98
67
|
|
99
68
|
```sh
|
100
|
-
$ gem push pkg/session_keys-0.
|
69
|
+
$ gem push pkg/session_keys-2.0.0.gem
|
101
70
|
```
|
102
71
|
|
103
72
|
Verify Gem Push at [https://rubygems.org/gems/session_keys](https://rubygems.org/gems/session_keys)
|
data/Rakefile
CHANGED
data/bin/console
CHANGED
data/lib/session_keys.rb
CHANGED
data/lib/session_keys/version.rb
CHANGED
data/session_keys.gemspec
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
#
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
2
3
|
lib = File.expand_path('../lib', __FILE__)
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
5
|
require 'session_keys/version'
|
@@ -9,13 +10,7 @@ Gem::Specification.new do |spec|
|
|
9
10
|
spec.authors = ['Glenn Rempe']
|
10
11
|
spec.email = ['glenn@rempe.us']
|
11
12
|
|
12
|
-
spec.required_ruby_version = '>= 2.
|
13
|
-
|
14
|
-
cert = File.expand_path('~/.gem-certs/gem-private_key_grempe.pem')
|
15
|
-
if cert && File.exist?(cert)
|
16
|
-
spec.signing_key = cert
|
17
|
-
spec.cert_chain = ['certs/gem-public_cert_grempe.pem']
|
18
|
-
end
|
13
|
+
spec.required_ruby_version = '>= 2.3.0'
|
19
14
|
|
20
15
|
spec.summary = <<-EOF
|
21
16
|
SessionKeys generates deterministic user IDs and NaCl encryption/signing
|
@@ -43,15 +38,13 @@ Gem::Specification.new do |spec|
|
|
43
38
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
44
39
|
spec.require_paths = ['lib']
|
45
40
|
|
46
|
-
spec.add_dependency 'rbnacl', '~>
|
47
|
-
spec.add_dependency '
|
48
|
-
spec.add_dependency 'zxcvbn-ruby', '~> 0.1'
|
41
|
+
spec.add_dependency 'rbnacl', '~> 7.0.0'
|
42
|
+
spec.add_dependency 'zxcvbn-ruby', '>= 1.0', '< 2.0'
|
49
43
|
|
50
|
-
spec.add_development_dependency 'bundler'
|
51
|
-
spec.add_development_dependency '
|
44
|
+
spec.add_development_dependency 'bundler'
|
45
|
+
spec.add_development_dependency 'coveralls', '~> 0.8.23'
|
52
46
|
spec.add_development_dependency 'minitest', '~> 5.0'
|
53
|
-
spec.add_development_dependency 'pry', '~> 0.
|
54
|
-
spec.add_development_dependency '
|
55
|
-
spec.add_development_dependency '
|
56
|
-
spec.add_development_dependency 'wwtd', '~> 1.3'
|
47
|
+
spec.add_development_dependency 'pry', '~> 0.12'
|
48
|
+
spec.add_development_dependency 'rake', '~> 12.3'
|
49
|
+
spec.add_development_dependency 'wwtd', '~> 1.4'
|
57
50
|
end
|
metadata
CHANGED
@@ -1,36 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: session_keys
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Glenn Rempe
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
|
-
cert_chain:
|
11
|
-
-
|
12
|
-
-----BEGIN CERTIFICATE-----
|
13
|
-
MIIDYDCCAkigAwIBAgIBATANBgkqhkiG9w0BAQUFADA7MQ4wDAYDVQQDDAVnbGVu
|
14
|
-
bjEVMBMGCgmSJomT8ixkARkWBXJlbXBlMRIwEAYKCZImiZPyLGQBGRYCdXMwHhcN
|
15
|
-
MTYwNDExMDI0NTU0WhcNMTcwNDExMDI0NTU0WjA7MQ4wDAYDVQQDDAVnbGVubjEV
|
16
|
-
MBMGCgmSJomT8ixkARkWBXJlbXBlMRIwEAYKCZImiZPyLGQBGRYCdXMwggEiMA0G
|
17
|
-
CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZqTH5Jf+D/W2B4BIiL49CpHa86rK/
|
18
|
-
oT+v3xZwuEE92lJea+ygn3IAsidVTW47AKE6Lt3UqUkGQGKxsqH/Dhir08BqjLlD
|
19
|
-
gBUozGZpM3B6uWZnD6QXLbOmZeGVDnwB/QDfzaawN1i3smlYxYT+KNLjl80aN3we
|
20
|
-
/cHAWG7JG47AF/S91mYcg1WgZnDgZt9+RyVR1AsfYbM+SidOSoXEOHPCbuUxLKJb
|
21
|
-
gj5ieCFhm5GNWEugvgiX/ruas+VHV0fF3fzjYlU2fZPTuQyB4UD5FWX4UqdsBf3w
|
22
|
-
jB94TDBsJ3FVGPbggEhLGKd8pbQmBIOqXolGaqhs7dnuf5imu5mAXHC1AgMBAAGj
|
23
|
-
bzBtMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRfxEyosUbKjfFa
|
24
|
-
j+gae2CcT3aFCTAZBgNVHREEEjAQgQ5nbGVubkByZW1wZS51czAZBgNVHRIEEjAQ
|
25
|
-
gQ5nbGVubkByZW1wZS51czANBgkqhkiG9w0BAQUFAAOCAQEAzgK20+MNOknR9Kx6
|
26
|
-
RisI3DsioCADjGldxY+INrwoTfPDVmNm4GdTYC+V+/BvxJw1RqHjEbuXSg0iibQC
|
27
|
-
4vN+th0Km7dnas/td1i+EKfGencfyQyecIaG9l3kbCkCWnldRtZ+BS5EfP2ML2u8
|
28
|
-
fyCtze/Piovu8IwXL1W5kGZMnvzLmWxdqI3VPUou40n8F+EiMMLgd53kpzjtNOau
|
29
|
-
4W+mqVGOwlEGVSgI5+0SIsD8pvc62PlPWTv0kn1bcufKKCZmoVmpfbe3j4JpBInq
|
30
|
-
zieXiXZSAojfFx9g91fKdIrlPbInHU/BaCxXSLBwvOM0drE+c2ue9X8gB55XAhzX
|
31
|
-
37oBiw==
|
32
|
-
-----END CERTIFICATE-----
|
33
|
-
date: 2016-09-08 00:00:00.000000000 Z
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-08-23 00:00:00.000000000 Z
|
34
12
|
dependencies:
|
35
13
|
- !ruby/object:Gem::Dependency
|
36
14
|
name: rbnacl
|
@@ -38,70 +16,62 @@ dependencies:
|
|
38
16
|
requirements:
|
39
17
|
- - "~>"
|
40
18
|
- !ruby/object:Gem::Version
|
41
|
-
version:
|
19
|
+
version: 7.0.0
|
42
20
|
type: :runtime
|
43
21
|
prerelease: false
|
44
22
|
version_requirements: !ruby/object:Gem::Requirement
|
45
23
|
requirements:
|
46
24
|
- - "~>"
|
47
25
|
- !ruby/object:Gem::Version
|
48
|
-
version:
|
26
|
+
version: 7.0.0
|
49
27
|
- !ruby/object:Gem::Dependency
|
50
|
-
name:
|
28
|
+
name: zxcvbn-ruby
|
51
29
|
requirement: !ruby/object:Gem::Requirement
|
52
30
|
requirements:
|
53
|
-
- - "
|
31
|
+
- - ">="
|
54
32
|
- !ruby/object:Gem::Version
|
55
33
|
version: '1.0'
|
34
|
+
- - "<"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '2.0'
|
56
37
|
type: :runtime
|
57
38
|
prerelease: false
|
58
39
|
version_requirements: !ruby/object:Gem::Requirement
|
59
40
|
requirements:
|
60
|
-
- - "
|
41
|
+
- - ">="
|
61
42
|
- !ruby/object:Gem::Version
|
62
43
|
version: '1.0'
|
63
|
-
-
|
64
|
-
name: zxcvbn-ruby
|
65
|
-
requirement: !ruby/object:Gem::Requirement
|
66
|
-
requirements:
|
67
|
-
- - "~>"
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: '0.1'
|
70
|
-
type: :runtime
|
71
|
-
prerelease: false
|
72
|
-
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
requirements:
|
74
|
-
- - "~>"
|
44
|
+
- - "<"
|
75
45
|
- !ruby/object:Gem::Version
|
76
|
-
version: '0
|
46
|
+
version: '2.0'
|
77
47
|
- !ruby/object:Gem::Dependency
|
78
48
|
name: bundler
|
79
49
|
requirement: !ruby/object:Gem::Requirement
|
80
50
|
requirements:
|
81
|
-
- - "
|
51
|
+
- - ">="
|
82
52
|
- !ruby/object:Gem::Version
|
83
|
-
version: '
|
53
|
+
version: '0'
|
84
54
|
type: :development
|
85
55
|
prerelease: false
|
86
56
|
version_requirements: !ruby/object:Gem::Requirement
|
87
57
|
requirements:
|
88
|
-
- - "
|
58
|
+
- - ">="
|
89
59
|
- !ruby/object:Gem::Version
|
90
|
-
version: '
|
60
|
+
version: '0'
|
91
61
|
- !ruby/object:Gem::Dependency
|
92
|
-
name:
|
62
|
+
name: coveralls
|
93
63
|
requirement: !ruby/object:Gem::Requirement
|
94
64
|
requirements:
|
95
65
|
- - "~>"
|
96
66
|
- !ruby/object:Gem::Version
|
97
|
-
version:
|
67
|
+
version: 0.8.23
|
98
68
|
type: :development
|
99
69
|
prerelease: false
|
100
70
|
version_requirements: !ruby/object:Gem::Requirement
|
101
71
|
requirements:
|
102
72
|
- - "~>"
|
103
73
|
- !ruby/object:Gem::Version
|
104
|
-
version:
|
74
|
+
version: 0.8.23
|
105
75
|
- !ruby/object:Gem::Dependency
|
106
76
|
name: minitest
|
107
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,56 +92,42 @@ dependencies:
|
|
122
92
|
requirements:
|
123
93
|
- - "~>"
|
124
94
|
- !ruby/object:Gem::Version
|
125
|
-
version: '0.
|
126
|
-
type: :development
|
127
|
-
prerelease: false
|
128
|
-
version_requirements: !ruby/object:Gem::Requirement
|
129
|
-
requirements:
|
130
|
-
- - "~>"
|
131
|
-
- !ruby/object:Gem::Version
|
132
|
-
version: '0.10'
|
133
|
-
- !ruby/object:Gem::Dependency
|
134
|
-
name: coveralls
|
135
|
-
requirement: !ruby/object:Gem::Requirement
|
136
|
-
requirements:
|
137
|
-
- - "~>"
|
138
|
-
- !ruby/object:Gem::Version
|
139
|
-
version: '0.8'
|
95
|
+
version: '0.12'
|
140
96
|
type: :development
|
141
97
|
prerelease: false
|
142
98
|
version_requirements: !ruby/object:Gem::Requirement
|
143
99
|
requirements:
|
144
100
|
- - "~>"
|
145
101
|
- !ruby/object:Gem::Version
|
146
|
-
version: '0.
|
102
|
+
version: '0.12'
|
147
103
|
- !ruby/object:Gem::Dependency
|
148
|
-
name:
|
104
|
+
name: rake
|
149
105
|
requirement: !ruby/object:Gem::Requirement
|
150
106
|
requirements:
|
151
107
|
- - "~>"
|
152
108
|
- !ruby/object:Gem::Version
|
153
|
-
version: '
|
109
|
+
version: '12.3'
|
154
110
|
type: :development
|
155
111
|
prerelease: false
|
156
112
|
version_requirements: !ruby/object:Gem::Requirement
|
157
113
|
requirements:
|
158
114
|
- - "~>"
|
159
115
|
- !ruby/object:Gem::Version
|
160
|
-
version: '
|
116
|
+
version: '12.3'
|
161
117
|
- !ruby/object:Gem::Dependency
|
162
118
|
name: wwtd
|
163
119
|
requirement: !ruby/object:Gem::Requirement
|
164
120
|
requirements:
|
165
121
|
- - "~>"
|
166
122
|
- !ruby/object:Gem::Version
|
167
|
-
version: '1.
|
123
|
+
version: '1.4'
|
168
124
|
type: :development
|
169
125
|
prerelease: false
|
170
126
|
version_requirements: !ruby/object:Gem::Requirement
|
171
127
|
requirements:
|
172
128
|
- - "~>"
|
173
129
|
- !ruby/object:Gem::Version
|
174
|
-
version: '1.
|
130
|
+
version: '1.4'
|
175
131
|
description: |2
|
176
132
|
SessionKeys is a cryptographic tool for the deterministic generation of
|
177
133
|
NaCl compatible Curve25519 encryption and Ed25519 digital signature keys.
|
@@ -189,6 +145,7 @@ extensions: []
|
|
189
145
|
extra_rdoc_files: []
|
190
146
|
files:
|
191
147
|
- ".coco.yml"
|
148
|
+
- ".codeclimate.yml"
|
192
149
|
- ".gitignore"
|
193
150
|
- ".rubocop.yml"
|
194
151
|
- ".ruby-version"
|
@@ -219,7 +176,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
219
176
|
requirements:
|
220
177
|
- - ">="
|
221
178
|
- !ruby/object:Gem::Version
|
222
|
-
version: 2.
|
179
|
+
version: 2.3.0
|
223
180
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
224
181
|
requirements:
|
225
182
|
- - ">="
|
@@ -227,7 +184,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
227
184
|
version: '0'
|
228
185
|
requirements: []
|
229
186
|
rubyforge_project:
|
230
|
-
rubygems_version: 2.
|
187
|
+
rubygems_version: 2.7.6.2
|
231
188
|
signing_key:
|
232
189
|
specification_version: 4
|
233
190
|
summary: SessionKeys generates deterministic user IDs and NaCl encryption/signing
|
checksums.yaml.gz.sig
DELETED
Binary file
|
data.tar.gz.sig
DELETED
Binary file
|
metadata.gz.sig
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
S�g{��˟��{��ۂHY���:M���J���UU-�M?ǭ�F��@�W9�� � ���h��x�r}�C����N�Ǚ�6�k3�����֞������y����s��\�$i��]=��,P��������h)�
|