? modules/openid/translations
Index: modules/openid/openid.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/openid/openid.inc,v
retrieving revision 1.8.2.3
diff -u -9 -p -r1.8.2.3 openid.inc
--- modules/openid/openid.inc	1 Mar 2010 11:06:41 -0000	1.8.2.3
+++ modules/openid/openid.inc	6 Apr 2010 19:05:55 -0000
@@ -240,26 +240,26 @@ function _openid_signature($association,
   $message = _openid_create_message($sign_data);
   $secret = base64_decode($association->mac_key);
   $signature = _openid_hmac($secret, $message);
 
   return base64_encode($signature);
 }
 
 function _openid_hmac($key, $text) {
   if (strlen($key) > OPENID_SHA1_BLOCKSIZE) {
-    $key = _openid_sha1($key, true);
+    $key = _openid_sha1($key);
   }
 
   $key = str_pad($key, OPENID_SHA1_BLOCKSIZE, chr(0x00));
   $ipad = str_repeat(chr(0x36), OPENID_SHA1_BLOCKSIZE);
   $opad = str_repeat(chr(0x5c), OPENID_SHA1_BLOCKSIZE);
-  $hash1 = _openid_sha1(($key ^ $ipad) . $text, true);
-  $hmac = _openid_sha1(($key ^ $opad) . $hash1, true);
+  $hash1 = _openid_sha1(($key ^ $ipad) . $text);
+  $hmac = _openid_sha1(($key ^ $opad) . $hash1);
 
   return $hmac;
 }
 
 function _openid_sha1($text) {
   $hex = sha1($text);
   $raw = '';
   for ($i = 0; $i < 40; $i += 2) {
     $hexcode = substr($hex, $i, 2);
