slosilo 3.0.2.pre.350 → 3.0.2.pre.378
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/lib/slosilo/jwt.rb +2 -2
- data/spec/jwt_spec.rb +5 -5
- metadata +3 -3
- /data/{.gitleaks.toml → .oldgitleaks.toml} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf892c194d47dfad01cfb8e99c14193401dec5d609076b867183a4240fced6b0
|
4
|
+
data.tar.gz: ebad94e4665f3587434e98b3e18b86578ff07752354fc3ad2b32f9e0efd2376c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc7fcc5ad4c1708435ad71a6fa1148c24f16b820b44f03e32d3ca1b0522f90db083e7a999417ae7ec28364c218bbac0c8bd281ed1d68c5696068e938d9434ccc
|
7
|
+
data.tar.gz: d4dc673e34f8276e5f4d86e9e5873e076df9f5d4d13f41419ed5a100b80363690fec28bc26274d99f7e74a388236b3b23206f3c6e03d13fe7269e2dd90da72dc
|
data/lib/slosilo/jwt.rb
CHANGED
@@ -18,7 +18,7 @@ module Slosilo
|
|
18
18
|
# Parse a token in JSON representation.
|
19
19
|
# @note only single signature is currently supported.
|
20
20
|
def self.parse_json raw
|
21
|
-
raw = JSON.
|
21
|
+
raw = JSON.parse raw unless raw.respond_to? :to_h
|
22
22
|
parts = raw.to_h.values_at(*%w(protected payload signature))
|
23
23
|
fail ArgumentError, "input not a complete JWT" unless parts.all?
|
24
24
|
load *parts.map(&Base64.method(:urlsafe_decode64))
|
@@ -93,7 +93,7 @@ module Slosilo
|
|
93
93
|
end
|
94
94
|
|
95
95
|
def self.load raw
|
96
|
-
self[JSON.
|
96
|
+
self[JSON.parse raw.to_s].tap do |h|
|
97
97
|
h.send :repr=, raw
|
98
98
|
end
|
99
99
|
end
|
data/spec/jwt_spec.rb
CHANGED
@@ -35,19 +35,19 @@ describe Slosilo::JWT do
|
|
35
35
|
end
|
36
36
|
|
37
37
|
it 'allows conversion to JSON representation with #to_json' do
|
38
|
-
json = JSON.
|
39
|
-
expect(JSON.
|
38
|
+
json = JSON.parse token.to_json
|
39
|
+
expect(JSON.parse Base64.urlsafe_decode64 json['protected']).to eq \
|
40
40
|
'alg' => 'test-sig'
|
41
|
-
expect(JSON.
|
41
|
+
expect(JSON.parse Base64.urlsafe_decode64 json['payload']).to eq \
|
42
42
|
'iat' => 1401938552, 'test' => 'token'
|
43
43
|
expect(Base64.urlsafe_decode64 json['signature']).to eq signature
|
44
44
|
end
|
45
45
|
|
46
46
|
it 'allows conversion to compact representation with #to_s' do
|
47
47
|
h, c, s = token.to_s.split '.'
|
48
|
-
expect(JSON.
|
48
|
+
expect(JSON.parse Base64.urlsafe_decode64 h).to eq \
|
49
49
|
'alg' => 'test-sig'
|
50
|
-
expect(JSON.
|
50
|
+
expect(JSON.parse Base64.urlsafe_decode64 c).to eq \
|
51
51
|
'iat' => 1401938552, 'test' => 'token'
|
52
52
|
expect(Base64.urlsafe_decode64 s).to eq signature
|
53
53
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slosilo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.2.pre.
|
4
|
+
version: 3.0.2.pre.378
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rafał Rzepecki
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -160,8 +160,8 @@ extra_rdoc_files: []
|
|
160
160
|
files:
|
161
161
|
- ".github/CODEOWNERS"
|
162
162
|
- ".gitignore"
|
163
|
-
- ".gitleaks.toml"
|
164
163
|
- ".kateproject"
|
164
|
+
- ".oldgitleaks.toml"
|
165
165
|
- CHANGELOG.md
|
166
166
|
- CONTRIBUTING.md
|
167
167
|
- Gemfile
|
File without changes
|