You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
882 B
29 lines
882 B
<?php |
|
/** |
|
* @link http://www.yiiframework.com/ |
|
* @copyright Copyright (c) 2008 Yii Software LLC |
|
* @license http://www.yiiframework.com/license/ |
|
*/ |
|
|
|
namespace yii\helpers; |
|
|
|
/** |
|
* Security provides a set of methods to handle common security-related tasks. |
|
* |
|
* In particular, Security supports the following features: |
|
* |
|
* - Encryption/decryption: [[encrypt()]] and [[decrypt()]] |
|
* - Data tampering prevention: [[hashData()]] and [[validateData()]] |
|
* - Password validation: [[generatePasswordHash()]] and [[validatePassword()]] |
|
* |
|
* Additionally, Security provides [[getSecretKey()]] to support generating |
|
* named secret keys. These secret keys, once generated, will be stored in a file |
|
* and made available in future requests. |
|
* |
|
* @author Qiang Xue <qiang.xue@gmail.com> |
|
* @author Tom Worster <fsb@thefsb.org> |
|
* @since 2.0 |
|
*/ |
|
class Security extends SecurityBase |
|
{ |
|
}
|
|
|