diff options
Diffstat (limited to 'Auth/OpenID/Association.php')
-rw-r--r-- | Auth/OpenID/Association.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/Association.php b/Auth/OpenID/Association.php index d1ac1ed..2729138 100644 --- a/Auth/OpenID/Association.php +++ b/Auth/OpenID/Association.php @@ -374,7 +374,7 @@ class Auth_OpenID_Association { } $calculated_sig = $this->getMessageSignature($message); - return $calculated_sig == $sig; + return Auth_OpenID_CryptUtil::constEq($calculated_sig, $sig); } } |