| 123456789101112131415161718 |
- /* System.Web.Configuration
- * Authors:
- * Leen Toelen ([email protected])
- * Copyright (C) 2001 Leen Toelen
- */
- namespace System.Web.Configuration {
- /// <summary>
- /// Defines the password encryption format.
- /// </summary>
- public enum FormsAuthPasswordFormat{
- Clear,
- MD5,
- SHA1
- }
- } //namespace System.Web.Configuration
|