--- a/web/lib/Zend/Service/Amazon/Authentication/V1.php Thu Mar 21 17:31:31 2013 +0100
+++ b/web/lib/Zend/Service/Amazon/Authentication/V1.php Thu Mar 21 19:50:53 2013 +0100
@@ -15,7 +15,7 @@
* @category Zend
* @package Zend_Service_Amazon
* @subpackage Authentication
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
@@ -33,7 +33,7 @@
* @category Zend
* @package Zend_Service_Amazon
* @subpackage Authentication
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Service_Amazon_Authentication_V1 extends Zend_Service_Amazon_Authentication
@@ -47,7 +47,7 @@
* Signature Encoding Method
*/
protected $_signatureMethod = 'HmacSHA256';
-
+
/**
* Generate the required attributes for the signature
* @param string $url
@@ -64,7 +64,7 @@
}
$data = $this->_signParameters($url, $parameters);
-
+
return $data;
}
@@ -102,7 +102,7 @@
$hmac = Zend_Crypt_Hmac::compute($this->_secretKey, 'SHA1', $data, Zend_Crypt_Hmac::BINARY);
$paramaters['Signature'] = base64_encode($hmac);
-
+
return $data;
}
}