diff -r 2251fb41dbc7 -r 1e110b03ae96 web/lib/Zend/Service/Amazon/Authentication/V1.php --- a/web/lib/Zend/Service/Amazon/Authentication/V1.php Sun Apr 21 10:07:03 2013 +0200 +++ b/web/lib/Zend/Service/Amazon/Authentication/V1.php Sun Apr 21 21:54:24 2013 +0200 @@ -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; } }