blob: bae569567ff401d2ad8f91f45e2b4ec6d041d6af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
/**
* TSecurityManager class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Security
*/
namespace Prado\Security;
/**
* TSecurityManagerValidationMode class.
*
* This class has been deprecated since version 3.2.1.
*
* TSecurityManagerValidationMode defines the enumerable type for the possible validation modes
* that can be used by {@link TSecurityManager}.
*
* The following enumerable values are defined:
* - MD5: an MD5 hash is generated from the data and used for validation.
* - SHA1: an SHA1 hash is generated from the data and used for validation.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package Prado\Security
* @since 3.0.4
*/
class TSecurityManagerValidationMode extends TEnumerable
{
const MD5 = 'MD5';
const SHA1 = 'SHA1';
}
|