FormsAuthPasswordFormat.cs 337 B

123456789101112131415161718
  1. /* System.Web.Configuration
  2. * Authors:
  3. * Leen Toelen ([email protected])
  4. * Copyright (C) 2001 Leen Toelen
  5. */
  6. namespace System.Web.Configuration {
  7. /// <summary>
  8. /// Defines the password encryption format.
  9. /// </summary>
  10. public enum FormsAuthPasswordFormat{
  11. Clear,
  12. MD5,
  13. SHA1
  14. }
  15. } //namespace System.Web.Configuration