/* System.Web.Configuration * Authors: * Leen Toelen (toelen@hotmail.com) * Copyright (C) 2001 Leen Toelen */ namespace System.Web.Configuration { /// /// Defines the password encryption format. /// public enum FormsAuthPasswordFormat{ Clear, MD5, SHA1 } } //namespace System.Web.Configuration