diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-20 19:33:03 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-20 19:33:03 +0100 |
commit | 1729b4bffedbcd0e0bdff80b74aa9944312d817c (patch) | |
tree | 403ea960c5d2e49935920477a99482530b181440 /framework/Security/TSecurityManagerValidationMode.php | |
parent | 151aeac41b60f094242e65b6dbccbc1e95c5c27d (diff) |
One class per file: framework/Security
Diffstat (limited to 'framework/Security/TSecurityManagerValidationMode.php')
-rw-r--r-- | framework/Security/TSecurityManagerValidationMode.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/framework/Security/TSecurityManagerValidationMode.php b/framework/Security/TSecurityManagerValidationMode.php new file mode 100644 index 00000000..fe1086b5 --- /dev/null +++ b/framework/Security/TSecurityManagerValidationMode.php @@ -0,0 +1,32 @@ +<?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 System.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 System.Security + * @since 3.0.4 + */ +class TSecurityManagerValidationMode extends TEnumerable +{ + const MD5 = 'MD5'; + const SHA1 = 'SHA1'; +}
\ No newline at end of file |