Remove dead code (#8919)
SignatureVerification#matches_time_window? is not called anywhere.
This commit is contained in:
parent
2dba313100
commit
a00ce8c92c
|
@ -87,16 +87,6 @@ module SignatureVerification
|
|||
end.join("\n")
|
||||
end
|
||||
|
||||
def matches_time_window?
|
||||
begin
|
||||
time_sent = DateTime.httpdate(request.headers['Date'])
|
||||
rescue ArgumentError
|
||||
return false
|
||||
end
|
||||
|
||||
(Time.now.utc - time_sent).abs <= 30
|
||||
end
|
||||
|
||||
def body_digest
|
||||
"SHA-256=#{Digest::SHA256.base64digest(request_body)}"
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue