mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-04-04 05:33:34 +03:00
Merge pull request #117 from gaomd/fix-signature-check
Strict check of signature
This commit is contained in:
commit
7844883c86
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ class Mailgun{
|
|||
return hash_equals($hmac, $sig);
|
||||
}
|
||||
else {
|
||||
return ($hmac == $sig);
|
||||
return ($hmac === $sig);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue