* SessionStateModule.cs: If using cookieless sessions add an
[mono.git] / mcs / class / System.Web / System.Web.Configuration / FormsAuthPasswordFormat.cs
1 /* System.Web.Configuration
2  * Authors:
3  *   Leen Toelen (toelen@hotmail.com)
4  *  Copyright (C) 2001 Leen Toelen
5 */
6
7 namespace System.Web.Configuration {
8
9         /// <summary>
10         /// Defines the password encryption format.
11         /// </summary>
12         public enum FormsAuthPasswordFormat{
13                 Clear, 
14                 SHA1,
15                 MD5
16         }
17
18 } //namespace System.Web.Configuration