class Slack::Events::Request

def signature

Slack is sending using a standard HMAC-SHA256 keyed hash.
The signature is created by combining the signing secret with the body of the request
def signature
  @signature ||= http_request.get_header('HTTP_X_SLACK_SIGNATURE')
end