Преглед изворни кода

[ZF-6570]needs to change copyright annotation tags:Zend_Crypt_Hmac

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@15451 44c647ce-9c0f-0410-b52a-842ac1e357ba
yoshida@zend.co.jp пре 16 година
родитељ
комит
04409c0da4
2 измењених фајлова са 18 додато и 15 уклоњено
  1. 9 5
      library/Zend/Crypt/Hmac.php
  2. 9 10
      library/Zend/Crypt/Hmac/Exception.php

+ 9 - 5
library/Zend/Crypt/Hmac.php

@@ -14,23 +14,27 @@
  *
  * @category   Zend
  * @package    Zend_Crypt
- * @copyright  Copyright (c) 2007 Pádraic Brady (http://blog.astrumfutura.com)
+ * @subpackage Hmac
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
- * @version    $Id: Hmac.php 153 2008-06-16 23:01:55Z padraic $
+ * @version    $Id$
  */
 
-require_once('Zend/Crypt.php');
+/**
+ * @see Zend_Crypt
+ */
+require_once 'Zend/Crypt.php';
 
 /**
  * PHP implementation of the RFC 2104 Hash based Message Authentication Code
  * algorithm.
  *
  * @todo  Patch for refactoring failed tests (key block sizes >80 using internal algo)
+ * @todo       Check if mhash() is a required alternative (will be PECL-only soon)
  * @category   Zend
  * @package    Zend_Crypt
- * @copyright  Copyright (c) 2007 Pádraic Brady (http://blog.astrumfutura.com)
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
- * @todo       Check if mhash() is a required alternative (will be PECL-only soon)
  */
 class Zend_Crypt_Hmac extends Zend_Crypt
 {

+ 9 - 10
library/Zend/Crypt/Hmac/Exception.php

@@ -1,5 +1,4 @@
 <?php
-
 /**
  * Zend Framework
  *
@@ -14,24 +13,24 @@
  * to license@zend.com so we can send you a copy immediately.
  *
  * @category   Zend
- * @package    Zend_Auth
- * @copyright  Copyright (c) 2007 Pádraic Brady
+ * @package    Zend_Crypt
+ * @subpackage Hmac
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
- * @version    $Id: Exception.php 102 2007-07-13 15:16:01Z padraic $
+ * @version    $Id$
  */
 
-
 /**
- * Zend_Crypt_Exception
+ * @see Zend_Crypt_Exception
  */
 require_once 'Zend/Crypt/Exception.php';
 
-
 /**
  * @category   Zend
- * @package    Zend_Auth
- * @copyright  Copyright (c) 2007 Pádraic Brady
+ * @package    Zend_Crypt
+ * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 class Zend_Crypt_Hmac_Exception extends Zend_Crypt_Exception
-{}
+{
+}