api-auth 2.4.1 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +6 -2
- data/.rubocop_todo.yml +29 -19
- data/.travis.yml +4 -11
- data/CHANGELOG.md +8 -0
- data/README.md +28 -26
- data/VERSION +1 -1
- data/api_auth.gemspec +5 -4
- data/gemfiles/rails_60.gemfile +0 -2
- data/gemfiles/{rails_51.gemfile → rails_61.gemfile} +4 -2
- data/lib/api_auth/base.rb +2 -2
- data/lib/api_auth/headers.rb +6 -6
- data/lib/api_auth/helpers.rb +2 -2
- data/lib/api_auth/railtie.rb +3 -1
- data/lib/api_auth/request_drivers/action_controller.rb +8 -8
- data/lib/api_auth/request_drivers/curb.rb +4 -4
- data/lib/api_auth/request_drivers/faraday.rb +11 -11
- data/lib/api_auth/request_drivers/grape_request.rb +8 -8
- data/lib/api_auth/request_drivers/http.rb +8 -8
- data/lib/api_auth/request_drivers/httpi.rb +8 -8
- data/lib/api_auth/request_drivers/net_http.rb +8 -8
- data/lib/api_auth/request_drivers/rack.rb +8 -8
- data/lib/api_auth/request_drivers/rest_client.rb +8 -8
- data/spec/api_auth_spec.rb +8 -8
- data/spec/headers_spec.rb +26 -26
- data/spec/helpers_spec.rb +1 -1
- data/spec/railtie_spec.rb +3 -3
- data/spec/request_drivers/action_controller_spec.rb +35 -35
- data/spec/request_drivers/action_dispatch_spec.rb +35 -35
- data/spec/request_drivers/curb_spec.rb +8 -8
- data/spec/request_drivers/faraday_spec.rb +43 -43
- data/spec/request_drivers/grape_request_spec.rb +33 -32
- data/spec/request_drivers/http_spec.rb +23 -23
- data/spec/request_drivers/httpi_spec.rb +22 -22
- data/spec/request_drivers/net_http_spec.rb +23 -23
- data/spec/request_drivers/rack_spec.rb +35 -35
- data/spec/request_drivers/rest_client_spec.rb +36 -36
- metadata +29 -19
- data/gemfiles/http2.gemfile +0 -7
- data/gemfiles/http3.gemfile +0 -7
- data/gemfiles/rails_5.gemfile +0 -9
- data/spec/.rubocop.yml +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cdc2295825296be5b720b2df6ca984f247a71f549af9f4a8397a68e37e08707e
|
4
|
+
data.tar.gz: 9171431679afa0ab3bc8ab74a06a0bd14424034b0fb3af4202bfb45458f6b7a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e07b3ad4db78a4f12339dc542827b0c43ee4aa3c7c1068f1ee639ca88c67ead6953e4158b6f9950127ab200fff06f7ee66312cc54dd6b3a59810ee1ceeb987b4
|
7
|
+
data.tar.gz: '051628373d800d5248fa1d9bdd6f3b57ba27ad898199dc84a241be2b551f22468e79facf208ba47141ef2d6591d462bf2f279233d7f8df4d7cef05b179e87da7'
|
data/.rubocop.yml
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
inherit_from: .rubocop_todo.yml
|
2
2
|
|
3
3
|
AllCops:
|
4
|
-
TargetRubyVersion: 2.
|
4
|
+
TargetRubyVersion: 2.5
|
5
5
|
|
6
6
|
Metrics/AbcSize:
|
7
|
-
Max:
|
7
|
+
Max: 28
|
8
8
|
|
9
9
|
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
10
10
|
# URISchemes: http, https
|
@@ -14,6 +14,10 @@ Layout/LineLength:
|
|
14
14
|
Metrics/MethodLength:
|
15
15
|
Max: 40
|
16
16
|
|
17
|
+
Metrics/BlockLength:
|
18
|
+
Exclude:
|
19
|
+
- 'spec/**/*.rb'
|
20
|
+
|
17
21
|
Naming/FileName:
|
18
22
|
Exclude:
|
19
23
|
- 'lib/api-auth.rb'
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2021-03-26 22:04:17 UTC using RuboCop version 1.12.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
# Offense count: 1
|
10
10
|
# Cop supports --auto-correct.
|
11
|
-
# Configuration parameters:
|
11
|
+
# Configuration parameters: TreatCommentsAsGroupSeparators, ConsiderPunctuation, Include.
|
12
12
|
# Include: **/*.gemspec
|
13
13
|
Gemspec/OrderedDependencies:
|
14
14
|
Exclude:
|
@@ -20,6 +20,13 @@ Lint/AssignmentInCondition:
|
|
20
20
|
Exclude:
|
21
21
|
- 'lib/api_auth/base.rb'
|
22
22
|
|
23
|
+
# Offense count: 4
|
24
|
+
# Configuration parameters: AllowedMethods.
|
25
|
+
# AllowedMethods: enums
|
26
|
+
Lint/ConstantDefinitionInBlock:
|
27
|
+
Exclude:
|
28
|
+
- 'spec/railtie_spec.rb'
|
29
|
+
|
23
30
|
# Offense count: 9
|
24
31
|
# Configuration parameters: CheckForMethodsWithNoSideEffects.
|
25
32
|
Lint/Void:
|
@@ -35,19 +42,21 @@ Lint/Void:
|
|
35
42
|
- 'lib/api_auth/request_drivers/rest_client.rb'
|
36
43
|
|
37
44
|
# Offense count: 1
|
38
|
-
# Configuration parameters:
|
39
|
-
|
45
|
+
# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
|
46
|
+
Metrics/AbcSize:
|
47
|
+
Max: 28
|
48
|
+
|
49
|
+
# Offense count: 1
|
50
|
+
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
51
|
+
# IgnoredMethods: refine
|
40
52
|
Metrics/BlockLength:
|
41
53
|
Max: 27
|
42
54
|
|
43
|
-
# Offense count:
|
55
|
+
# Offense count: 2
|
56
|
+
# Configuration parameters: IgnoredMethods.
|
44
57
|
Metrics/CyclomaticComplexity:
|
45
58
|
Max: 15
|
46
59
|
|
47
|
-
# Offense count: 1
|
48
|
-
Metrics/PerceivedComplexity:
|
49
|
-
Max: 8
|
50
|
-
|
51
60
|
# Offense count: 10
|
52
61
|
Naming/AccessorMethodName:
|
53
62
|
Exclude:
|
@@ -64,29 +73,30 @@ Naming/AccessorMethodName:
|
|
64
73
|
|
65
74
|
# Offense count: 3
|
66
75
|
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
|
67
|
-
# AllowedNames:
|
76
|
+
# AllowedNames: at, by, db, id, in, io, ip, of, on, os, pp, to
|
68
77
|
Naming/MethodParameterName:
|
69
78
|
Exclude:
|
70
79
|
- 'lib/api_auth/base.rb'
|
71
80
|
- 'spec/railtie_spec.rb'
|
72
81
|
|
73
|
-
# Offense count: 1
|
74
|
-
# Configuration parameters: EnforcedStyle.
|
75
|
-
# SupportedStyles: inline, group
|
76
|
-
Style/AccessModifierDeclarations:
|
77
|
-
Exclude:
|
78
|
-
- 'lib/api_auth/headers.rb'
|
79
|
-
|
80
82
|
# Offense count: 9
|
83
|
+
# Cop supports --auto-correct.
|
81
84
|
Style/CommentedKeyword:
|
82
85
|
Exclude:
|
83
86
|
- 'lib/api_auth/base.rb'
|
84
87
|
- 'lib/api_auth/railtie.rb'
|
85
88
|
|
86
|
-
# Offense count:
|
89
|
+
# Offense count: 3
|
90
|
+
# Configuration parameters: AllowedConstants.
|
87
91
|
Style/Documentation:
|
88
92
|
Exclude:
|
89
93
|
- 'spec/**/*'
|
90
94
|
- 'test/**/*'
|
91
95
|
- 'lib/api_auth/railtie.rb'
|
92
|
-
|
96
|
+
|
97
|
+
# Offense count: 1
|
98
|
+
# Configuration parameters: AllowedMethods.
|
99
|
+
# AllowedMethods: respond_to_missing?
|
100
|
+
Style/OptionalBooleanParameter:
|
101
|
+
Exclude:
|
102
|
+
- 'lib/api_auth/railtie.rb'
|
data/.travis.yml
CHANGED
@@ -2,17 +2,14 @@ language: ruby
|
|
2
2
|
sudo: false
|
3
3
|
cache: bundler
|
4
4
|
rvm:
|
5
|
-
- 2.4.3
|
6
5
|
- 2.5.3
|
7
6
|
- 2.6.1
|
8
7
|
- 2.7.1
|
8
|
+
- 3.0.0
|
9
9
|
gemfile:
|
10
|
-
- gemfiles/rails_5.gemfile
|
11
|
-
- gemfiles/rails_51.gemfile
|
12
10
|
- gemfiles/rails_52.gemfile
|
13
11
|
- gemfiles/rails_60.gemfile
|
14
|
-
- gemfiles/
|
15
|
-
- gemfiles/http3.gemfile
|
12
|
+
- gemfiles/rails_61.gemfile
|
16
13
|
- gemfiles/http4.gemfile
|
17
14
|
env:
|
18
15
|
- TEST_SUITE=rake
|
@@ -25,13 +22,9 @@ script:
|
|
25
22
|
|
26
23
|
matrix:
|
27
24
|
include:
|
28
|
-
- rvm:
|
29
|
-
gemfile: gemfiles/
|
25
|
+
- rvm: 3.0.0
|
26
|
+
gemfile: gemfiles/rails_61.gemfile
|
30
27
|
env: TEST_SUITE="rubocop lib/ spec/"
|
31
|
-
exclude:
|
32
|
-
- rvm: 2.4.3
|
33
|
-
gemfile: gemfiles/rails_60.gemfile
|
34
|
-
env: TEST_SUITE=rake
|
35
28
|
|
36
29
|
notifications:
|
37
30
|
email: false
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
# 2.5.0 (2021-05-11)
|
2
|
+
- Add support for Ruby 3.0 (#194 fwininger)
|
3
|
+
- Add support for Rails 6.1 (#194 fwininger)
|
4
|
+
- Drop support for Ruby 2.4 (#193 fwininger)
|
5
|
+
- Drop support for Rails 5.0 (#194 fwininger)
|
6
|
+
- Drop support for Rails 5.1 (#194 fwininger)
|
7
|
+
- Fix Faraday warning: `WARNING: Faraday::Request#method is deprecated` (#191 fwininger)
|
8
|
+
|
1
9
|
# 2.4.1 (2020-06-23)
|
2
10
|
- Fix inadvertant ActiveSupport dependecy (#189 taylorthurlow)
|
3
11
|
|
data/README.md
CHANGED
@@ -21,16 +21,18 @@ have to be written in the same language as the clients.
|
|
21
21
|
## How it works
|
22
22
|
|
23
23
|
1. A canonical string is first created using your HTTP headers containing the
|
24
|
-
content-type
|
25
|
-
content-
|
26
|
-
timestamp isn't present, a valid HTTP date is
|
27
|
-
request. The canonical string is computed as follows:
|
24
|
+
`content-type`, `X-Authorization-Content-SHA256`, request path and the date/time stamp.
|
25
|
+
If `content-type` or `X-Authorization-Content-SHA256` are not present, then a blank
|
26
|
+
string is used in their place. If the timestamp isn't present, a valid HTTP date is
|
27
|
+
automatically added to the request. The canonical string is computed as follows:
|
28
28
|
|
29
|
+
```ruby
|
30
|
+
canonical_string = "#{http method},#{content-type},#{X-Authorization-Content-SHA256},#{request URI},#{timestamp}"
|
29
31
|
```
|
30
|
-
canonical_string = "#{http method},#{content-type},#{content-MD5},#{request URI},#{timestamp}"
|
31
32
|
|
32
33
|
e.g.,
|
33
34
|
|
35
|
+
```ruby
|
34
36
|
canonical_string = 'POST,application/json,,request_path,Tue, 30 May 2017 03:51:43 GMT'
|
35
37
|
```
|
36
38
|
|
@@ -39,13 +41,13 @@ SHA1 HMAC, using the client's private secret key.
|
|
39
41
|
|
40
42
|
3. This signature is then added as the `Authorization` HTTP header in the form:
|
41
43
|
|
42
|
-
```
|
44
|
+
```ruby
|
43
45
|
Authorization = APIAuth "#{client access id}:#{signature from step 2}"
|
44
46
|
```
|
45
47
|
|
46
48
|
A cURL request would look like:
|
47
49
|
|
48
|
-
```
|
50
|
+
```sh
|
49
51
|
curl -X POST --header 'Content-Type: application/json' --header "Date: Tue, 30 May 2017 03:51:43 GMT" --header "Authorization: ${AUTHORIZATION}" http://my-app.com/request_path`
|
50
52
|
```
|
51
53
|
|
@@ -56,7 +58,6 @@ access id that was attached in the header. The access id can be any integer or
|
|
56
58
|
string that uniquely identifies the client. The signed request expires after 15
|
57
59
|
minutes in order to avoid replay attacks.
|
58
60
|
|
59
|
-
|
60
61
|
## References
|
61
62
|
|
62
63
|
* [Hash functions](http://en.wikipedia.org/wiki/Cryptographic_hash_function)
|
@@ -66,7 +67,7 @@ minutes in order to avoid replay attacks.
|
|
66
67
|
|
67
68
|
## Requirement
|
68
69
|
|
69
|
-
This gem require Ruby >= 2.
|
70
|
+
This gem require Ruby >= 2.5 and Rails >= 5.1 if you use rails.
|
70
71
|
|
71
72
|
For older version of Ruby or Rails, please use ApiAuth v2.1 and older.
|
72
73
|
|
@@ -77,7 +78,7 @@ For older version of Ruby or Rails, please use ApiAuth v2.1 and older.
|
|
77
78
|
The gem doesn't have any dependencies outside of having a working OpenSSL
|
78
79
|
configuration for your Ruby VM. To install:
|
79
80
|
|
80
|
-
```
|
81
|
+
```sh
|
81
82
|
[sudo] gem install api-auth
|
82
83
|
```
|
83
84
|
|
@@ -104,15 +105,15 @@ Here's a sample implementation of signing a request created with RestClient.
|
|
104
105
|
|
105
106
|
Assuming you have a client access id and secret as follows:
|
106
107
|
|
107
|
-
```
|
108
|
+
```ruby
|
108
109
|
@access_id = "1044"
|
109
110
|
@secret_key = ApiAuth.generate_secret_key
|
110
111
|
```
|
111
112
|
|
112
113
|
A typical RestClient PUT request may look like:
|
113
114
|
|
114
|
-
```
|
115
|
-
headers = { 'Content-
|
115
|
+
```ruby
|
116
|
+
headers = { 'X-Authorization-Content-SHA256' => "dWiCWEMZWMxeKM8W8Yuh/TbI29Hw5xUSXZWXEJv63+Y=",
|
116
117
|
'Content-Type' => "text/plain",
|
117
118
|
'Date' => "Mon, 23 Jan 1984 03:29:56 GMT"
|
118
119
|
}
|
@@ -126,7 +127,7 @@ headers = { 'Content-MD5' => "e59ff97941044f85df5297e1c302d260",
|
|
126
127
|
|
127
128
|
To sign that request, simply call the `sign!` method as follows:
|
128
129
|
|
129
|
-
```
|
130
|
+
```ruby
|
130
131
|
@signed_request = ApiAuth.sign!(@request, @access_id, @secret_key)
|
131
132
|
```
|
132
133
|
|
@@ -140,26 +141,26 @@ If you are signing a request for a driver that doesn't support automatic http
|
|
140
141
|
method detection (like Curb or httpi), you can pass the http method as an option
|
141
142
|
into the sign! method like so:
|
142
143
|
|
143
|
-
```
|
144
|
+
```ruby
|
144
145
|
@signed_request = ApiAuth.sign!(@request, @access_id, @secret_key, :override_http_method => "PUT")
|
145
146
|
```
|
146
147
|
|
147
148
|
If you want to use another digest existing in `OpenSSL::Digest`,
|
148
149
|
you can pass the http method as an option into the sign! method like so:
|
149
150
|
|
150
|
-
```
|
151
|
+
```ruby
|
151
152
|
@signed_request = ApiAuth.sign!(@request, @access_id, @secret_key, :digest => 'sha256')
|
152
153
|
```
|
153
154
|
|
154
155
|
With the `digest` option, the `Authorization` header will be change from:
|
155
156
|
|
156
|
-
```
|
157
|
+
```sh
|
157
158
|
Authorization = APIAuth 'client access id':'signature'
|
158
159
|
```
|
159
160
|
|
160
161
|
to:
|
161
162
|
|
162
|
-
```
|
163
|
+
```sh
|
163
164
|
Authorization = APIAuth-HMAC-DIGEST_NAME 'client access id':'signature'
|
164
165
|
```
|
165
166
|
|
@@ -168,7 +169,7 @@ Authorization = APIAuth-HMAC-DIGEST_NAME 'client access id':'signature'
|
|
168
169
|
ApiAuth can transparently protect your ActiveResource communications with a
|
169
170
|
single configuration line:
|
170
171
|
|
171
|
-
```
|
172
|
+
```ruby
|
172
173
|
class MyResource < ActiveResource::Base
|
173
174
|
with_api_auth(access_id, secret_key)
|
174
175
|
end
|
@@ -181,7 +182,7 @@ This will automatically sign all outgoing ActiveResource requests from your app.
|
|
181
182
|
ApiAuth also works with [Flexirest](https://github.com/andyjeffries/flexirest) (used to be ActiveRestClient, but that is now unsupported) in a very similar way.
|
182
183
|
Simply add this configuration to your Flexirest initializer in your app and it will automatically sign all outgoing requests.
|
183
184
|
|
184
|
-
```
|
185
|
+
```ruby
|
185
186
|
Flexirest::Base.api_auth_credentials(@access_id, @secret_key)
|
186
187
|
```
|
187
188
|
|
@@ -192,20 +193,20 @@ clients as well as verifying incoming API requests.
|
|
192
193
|
|
193
194
|
To generate a Base64 encoded API key for a client:
|
194
195
|
|
195
|
-
```
|
196
|
+
```ruby
|
196
197
|
ApiAuth.generate_secret_key
|
197
198
|
```
|
198
199
|
|
199
200
|
To validate whether or not a request is authentic:
|
200
201
|
|
201
|
-
```
|
202
|
+
```ruby
|
202
203
|
ApiAuth.authentic?(signed_request, secret_key)
|
203
204
|
```
|
204
205
|
|
205
206
|
The `authentic?` method uses the digest specified in the `Authorization` header.
|
206
207
|
For example SHA256 for:
|
207
208
|
|
208
|
-
```
|
209
|
+
```sh
|
209
210
|
Authorization = APIAuth-HMAC-SHA256 'client access id':'signature'
|
210
211
|
```
|
211
212
|
|
@@ -213,7 +214,7 @@ And by default SHA1 if the HMAC-DIGEST is not specified.
|
|
213
214
|
|
214
215
|
If you want to force the usage of another digest method, you should pass it as an option parameter:
|
215
216
|
|
216
|
-
```
|
217
|
+
```ruby
|
217
218
|
ApiAuth.authentic?(signed_request, secret_key, :digest => 'sha256')
|
218
219
|
```
|
219
220
|
|
@@ -272,13 +273,13 @@ To run the tests:
|
|
272
273
|
|
273
274
|
Install the dependencies for a particular Rails version by specifying a gemfile in `gemfiles` directory:
|
274
275
|
|
275
|
-
```
|
276
|
+
```sh
|
276
277
|
BUNDLE_GEMFILE=gemfiles/rails_5.gemfile bundle install
|
277
278
|
```
|
278
279
|
|
279
280
|
Run the tests with those dependencies:
|
280
281
|
|
281
|
-
```
|
282
|
+
```sh
|
282
283
|
BUNDLE_GEMFILE=gemfiles/rails_5.gemfile bundle exec rake
|
283
284
|
```
|
284
285
|
|
@@ -290,6 +291,7 @@ the public methods for each driver are required to be implemented by your driver
|
|
290
291
|
|
291
292
|
* [Mauricio Gomes](http://github.com/mgomes)
|
292
293
|
* [Kevin Glowacz](http://github.com/kjg)
|
294
|
+
* [Florian Wininger](http://github.com/fwininger)
|
293
295
|
|
294
296
|
## Copyright
|
295
297
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.5.0
|
data/api_auth.gemspec
CHANGED
@@ -9,15 +9,15 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.authors = ['Mauricio Gomes']
|
10
10
|
s.email = 'mauricio@edge14.com'
|
11
11
|
|
12
|
-
s.required_ruby_version = '>= 2.
|
12
|
+
s.required_ruby_version = '>= 2.5.0'
|
13
13
|
|
14
|
-
s.add_development_dependency 'actionpack', '< 6.
|
14
|
+
s.add_development_dependency 'actionpack', '< 6.2', '> 5.0'
|
15
15
|
s.add_development_dependency 'activeresource', '>= 4.0'
|
16
|
-
s.add_development_dependency 'activesupport', '< 6.
|
16
|
+
s.add_development_dependency 'activesupport', '< 6.2', '> 5.0'
|
17
17
|
s.add_development_dependency 'amatch'
|
18
18
|
s.add_development_dependency 'appraisal'
|
19
19
|
s.add_development_dependency 'curb', '~> 0.8'
|
20
|
-
s.add_development_dependency 'faraday', '>= 0
|
20
|
+
s.add_development_dependency 'faraday', '>= 1.1.0'
|
21
21
|
s.add_development_dependency 'http'
|
22
22
|
s.add_development_dependency 'httpi'
|
23
23
|
s.add_development_dependency 'multipart-post', '~> 2.0'
|
@@ -26,6 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
s.add_development_dependency 'rest-client', '~> 2.0'
|
27
27
|
s.add_development_dependency 'grape', '~> 1.1.0'
|
28
28
|
s.add_development_dependency 'rspec', '~> 3.4'
|
29
|
+
s.add_development_dependency 'rexml'
|
29
30
|
|
30
31
|
s.files = `git ls-files`.split("\n")
|
31
32
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
data/gemfiles/rails_60.gemfile
CHANGED
data/lib/api_auth/base.rb
CHANGED
@@ -22,7 +22,7 @@ module ApiAuth
|
|
22
22
|
def sign!(request, access_id, secret_key, options = {})
|
23
23
|
options = { override_http_method: nil, digest: 'sha1' }.merge(options)
|
24
24
|
headers = Headers.new(request)
|
25
|
-
headers.
|
25
|
+
headers.calculate_hash
|
26
26
|
headers.set_date
|
27
27
|
headers.sign_header auth_header(headers, access_id, secret_key, options)
|
28
28
|
end
|
@@ -39,7 +39,7 @@ module ApiAuth
|
|
39
39
|
# 900 seconds is 15 minutes
|
40
40
|
clock_skew = options.fetch(:clock_skew, 900)
|
41
41
|
|
42
|
-
if headers.
|
42
|
+
if headers.content_hash_mismatch?
|
43
43
|
false
|
44
44
|
elsif !signatures_match?(headers, secret_key, options)
|
45
45
|
false
|