summaryrefslogtreecommitdiff
path: root/framework/Web/Security/TMembershipPasswordFormat.php
blob: fdff0e39fb26290533aa49a2f6ea7c2b27b245b6 (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
<?php
/**
 * TMembershipPasswordFormat class.
 * Describes the encryption format for storing passwords for membership users.
 * 
 * Clear		Passwords are not encrypted. 
 * Encrypted	Passwords are encrypted using the encryption settings determined by the 
 * 				machineKey Element element configuration. 
 * Hashed		Passwords are encrypted one-way using the SHA1 hashing algorithm. 
 * 				You can specify a hashing algorithm different than the SHA1 
 * 				algorithm using the hashAlgorithmType attribute.
 *
 * @author Jason Ragsdale <jrags@jasrags.net>
 * @version $Id: TMembershipPasswordFormat.php 1398 2006-09-08 19:31:03Z xue $
 * @package System.Web.Security
 * @since 3.1
 */
class TMembershipPasswordFormat extends TEnumerable 
{
	const Clear='Clear';
	const Encrypted='Encrypted';
	const Hashed='Hashed';
}
?>