jwt_signed_request 2.5.1 → 2.5.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/README.md +1 -1
- data/lib/jwt_signed_request/version.rb +1 -1
- metadata +3 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e837ceb1f3983362e3b926437e89cbbdab877252e9acc276d8670dc06e2066d0
|
4
|
+
data.tar.gz: dbadd464b577bbe6867e268fc2777e820b2f5af9e5fa50a2379f7cfd21b65afe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da2d6f87656012ec35c9fc4c7009e913bbaef51a811f2ce33b7728672c2bd925eaedb4af8b4793c63ba37c535437decad008f29d9360563327c393dac21e57aa
|
7
|
+
data.tar.gz: e562d633c943356dd6846e40cb3e77a4a51f96126d3a853bb3f75625a5d908d36cbe3068bdfc3efe6a600d3255284c754199423e6e33c83f284fa3f7e963c195
|
data/README.md
CHANGED
@@ -19,7 +19,7 @@ $ bundle
|
|
19
19
|
|
20
20
|
## Generating EC Keys
|
21
21
|
|
22
|
-
We should be using a public key encryption
|
22
|
+
We should be using a public key encryption algorithm such as **ES256**. To generate your public/private key pair using **ES256** run:
|
23
23
|
|
24
24
|
```sh
|
25
25
|
$ openssl ecparam -genkey -name prime256v1 -noout -out myprivatekey.pem
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jwt_signed_request
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.
|
4
|
+
version: 2.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Envato
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -17,9 +17,6 @@ dependencies:
|
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 1.5.0
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 2.2.0
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -27,9 +24,6 @@ dependencies:
|
|
27
24
|
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: 1.5.0
|
30
|
-
- - "<"
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 2.2.0
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: rack
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -153,8 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
153
147
|
- !ruby/object:Gem::Version
|
154
148
|
version: '0'
|
155
149
|
requirements: []
|
156
|
-
|
157
|
-
rubygems_version: 2.7.6
|
150
|
+
rubygems_version: 3.0.3
|
158
151
|
signing_key:
|
159
152
|
specification_version: 4
|
160
153
|
summary: JWT request signing and verification for Internal APIs
|