X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.Configuration%2FFormsAuthPasswordFormat.cs;h=91132fc35f00c0938050d049103ef8a30266c205;hb=881f83658281916d8f0784df7c726ecb7cc289db;hp=1ef62e8237e24af12db81afc0b8b91ec64b7032b;hpb=0c31213775e39ade10a7ce318be98e2de362da12;p=mono.git diff --git a/mcs/class/System.Web/System.Web.Configuration/FormsAuthPasswordFormat.cs b/mcs/class/System.Web/System.Web.Configuration/FormsAuthPasswordFormat.cs index 1ef62e8237e..91132fc35f0 100644 --- a/mcs/class/System.Web/System.Web.Configuration/FormsAuthPasswordFormat.cs +++ b/mcs/class/System.Web/System.Web.Configuration/FormsAuthPasswordFormat.cs @@ -1,4 +1,9 @@ - +// +// System.Web.Configuration.FormsAuthPasswordFormat.cs +// +// Author: Duncan Mak (duncan@novell.com) +// +// Copyright (C) 2005 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the @@ -19,21 +24,18 @@ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -/* System.Web.Configuration - * Authors: - * Leen Toelen (toelen@hotmail.com) - * Copyright (C) 2001 Leen Toelen -*/ + +using System; namespace System.Web.Configuration { - /// - /// Defines the password encryption format. - /// - public enum FormsAuthPasswordFormat{ - Clear, +#if !NET_2_0 + [Serializable] +#endif + public enum FormsAuthPasswordFormat + { + Clear, SHA1, MD5 } - -} //namespace System.Web.Configuration +}