Last active
October 14, 2023 00:53
-
-
Save viktorbenei/9a0524d9f6de82c5079a7faae840ee6a to your computer and use it in GitHub Desktop.
sha1 hmac hexdigest signature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"crypto/hmac" | |
"crypto/sha1" | |
"crypto/subtle" | |
"encoding/hex" | |
"fmt" | |
"os" | |
) | |
func generateSignature(secretToken, payloadBody string) string { | |
mac := hmac.New(sha1.New, []byte(secretToken)) | |
mac.Write([]byte(payloadBody)) | |
expectedMAC := mac.Sum(nil) | |
return "sha1=" + hex.EncodeToString(expectedMAC) | |
} | |
func verifySignature(secretToken, payloadBody string, signatureToCompareWith string) bool { | |
signature := generateSignature(secretToken, payloadBody) | |
return subtle.ConstantTimeCompare([]byte(signature), []byte(signatureToCompareWith)) == 1 | |
} | |
func main() { | |
testPayloadBody := `{"message":"test content"}` | |
testSignatureToCompareWith := `sha1=33a08e9b5e9c8d5e944d9288e9b499abb298344d` | |
fmt.Println("signature match? :", verifySignature(os.Getenv("SECRET_TOKEN"), testPayloadBody, testSignatureToCompareWith)) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'openssl' | |
require 'rack' # gem install rack | |
test_payload_body='{"message":"test content"}' | |
test_signature_to_compare_with='sha1=33a08e9b5e9c8d5e944d9288e9b499abb298344d' | |
def generate_signature(secret_token, payload_body) | |
return 'sha1=' + OpenSSL::HMAC.hexdigest(OpenSSL::Digest.new('sha1'), secret_token, payload_body) | |
end | |
def verify_signature(secret_token, payload_body, signature_to_compare_with) | |
signature = generate_signature(secret_token, payload_body) | |
return Rack::Utils.secure_compare(signature, signature_to_compare_with) | |
end | |
puts "signature match? : #{verify_signature(ENV['SECRET_TOKEN'], test_payload_body, test_signature_to_compare_with)}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To compare signatures use constant time compares:
Rack::Utils.secure_compare
(https://www.rubydoc.info/gems/rack/Rack/Utils.secure_compare)subtle.ConstantTimeCompare
(https://golang.org/pkg/crypto/subtle/#ConstantTimeCompare)