Moved TestConfiguration.cs to Npgsql.
[mono.git] / mcs / class / System.Web / System.Web.Security / ChangeLog
1 2006-09-26 Vladimir Krasnov <vladimirk@mainsoft.com>
2
3         * Membership.cs: fixed GetAllUsers, typo bug
4         * SqlRoleProvider.cs, SqlMembershipProvider.cs: refactored to use
5         aspnetdb built in stored procedures,
6         fixed application name and membership relation,
7         improved exception handling
8
9 2006-09-03 Igor Zelmanovich <igorz@mainsoft.com>
10
11         * RolePrincipal.cs: refactoring: instance can be serialized.
12
13 2006-09-03 Igor Zelmanovich <igorz@mainsoft.com>
14
15         * SqlMembershipProvider.cs: fixed GetUser,
16         when username is String.Empty methods returns null.
17
18 2006-08-31 Konstantin Triger <kostat@mainsoft.com>
19
20         * SqlRoleProvider.cs: fixed initialization.
21
22 2006-08-31 Igor Zelmanovich <igorz@mainsoft.com>
23
24         * SqlMembershipProvider.cs: fixed CreateUser,
25         password is checked, properties MinRequiredPasswordLength and 
26         MinRequiredNonAlphanumericCharacters are considered.
27
28 2006-08-29 Konstantin Triger <kostat@mainsoft.com>
29
30         * SqlMembershipProvider.cs: fix dispose order of reader vs connection.
31
32 2006-08-28 Igor Zelmanovich <igorz@mainsoft.com>
33
34         * SqlMembershipProvider.cs: fixed CreateUser, parameter isApproved is
35                 considered.
36
37 2006-08-28 Konstantin Triger <kostat@mainsoft.com>
38
39         * SqlMembershipProvider.cs: ensure GetUser() returns null if it cannot
40                 retrieve user information.
41
42 2006-08-28 Konstantin Triger <kostat@mainsoft.com>
43
44         * SqlRoleProvider.cs, SqlMembershipProvider.cs:
45                 "use SqlClientFactory in case the ProviderName is not specified.
46
47 2006-08-27 Konstantin Triger <kostat@mainsoft.com>
48
49         * SqlRoleProvider.cs: enable concurrent usage, refactoring.
50
51 2006-08-27 Konstantin Triger <kostat@mainsoft.com>
52
53         * SqlMembershipProvider.cs: enable concurrent usage, refactoring.
54
55 2006-08-27 Vladimir Krasnov <vladimirk@mainsoft.com>
56
57         * SqlMembershipProvider.cs: fixed ValidateUser, bug when user
58         not exists
59
60 2006-08-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
61
62         * FormsAuthentication.cs: set the Secure attribute of the authentication
63         cookie when required.
64
65 2006-07-06      Konstantin Triger <kostat@mainsoft.com>
66
67         * FormsAuthentication.cs: Ensure initialized, fix url mapping.
68
69 2006-05-03  Chris Toshok  <toshok@ximian.com>
70
71         * SqlMembershipProvider.cs (GetAlg): move this here for the time
72         being, as it's the only class that uses it.
73         (HashAndBase64Encode): nuke.
74         (EncryptAndBase64Encode): nuke.
75         (Base64DecodeAndDecrypt): nuke.
76         (DecryptPassword): new function.
77         (EncryptPassword): new function.
78         (ChangePassword): replace the switch with a call to
79         EncodePassword.
80         (ChangePasswordQuestionAndAnswer): same.
81         (CreateUser): same.
82         (ResetPassword): same.
83         (ValidateUsingPassword): same.
84         (ValidateUsingPasswordAnswer): same.
85         (GetPassword): same, and throw MembershipPasswordException if the
86         password answer is incorrect.
87
88         * MembershipProvider.cs (InitVector): nuke this.  it's actually
89         the salt from the database (for the sql provider, anyway).
90         (EncodePassword): based on the password format, password, and
91         salt, encode it.  Makes use of EncryptPassword.
92         (DecodePassword): likewise for decoding, makes use of
93         DecryptPassword.
94         (DecryptPassword): revert this to throwing
95         NotImplementedException, as the sql provideroverrides it to
96         perform the actual decryption.
97         (EncryptPassword): same.
98
99 2006-05-02  Chris Toshok  <toshok@ximian.com>
100
101         * SqlMembershipProvider.cs: 85% complete, maybe more.  The major
102         functionality should work.  Password retrieval (and encrypted
103         passwords in general) is untested.
104
105 2006-05-01  Chris Toshok  <toshok@ximian.com>
106
107         * Membership.cs (GeneratePassword): don't include quotes (',",`)
108         in the set of characters in the generated passwords.
109
110 2006-05-01  Chris Toshok  <toshok@ximian.com>
111
112         * MembershipProvider.cs (GetAlg): switch from Exception to
113         ProviderException to match MS behavior (and fix the unit test.)
114
115         * Membership.cs (GeneratePassword): implement.
116
117 2006-05-01  Chris Toshok  <toshok@ximian.com>
118
119         * SqlMembershipProvider.cs: lots more work.  checking this in in
120         its present state because I don't want to lose it.  It still needs
121         work.
122         
123         * Membership.cs (.cctor): remove the fallback.
124         (ValidatingPassword): remove the MonoTODO.
125
126         * MembershipProvider.cs (DecryptPassword): implement.
127         (EncryptPassword): implement.
128         (GetAlg): helper function for Decrypt/EncryptPassword.
129         (InitVector): same.
130
131 2006-04-27  Chris Toshok  <toshok@ximian.com>
132
133         * SqlMembershipProvider.cs (GeneratePassword): call
134         Membership.GeneratePassword with the configured minimum strength
135         requirements.
136
137 2006-04-27  Chris Toshok  <toshok@ximian.com>
138
139         * SqlMembershipProvider.cs (UnlockUser): fix sql query, and move
140         the CheckPararm call to the top of the method.
141
142 2006-04-12  Chris Toshok  <toshok@ximian.com>
143
144         * SqlMembershipProvider.cs: commit initial pass at
145         SqlMembershipProvider work.  lots of stuff untested in here.
146
147 2006-04-11  Chris Toshok  <toshok@ximian.com>
148
149         * MembershipUser.cs (.ctor): per Shackow's book, all DateTime's
150         are converted using ToUniversalTime when passed into this class.
151         (UpdateSelf): update ourselves from the passed in MembershipUser,
152         swallowing NotSupportedExceptions.
153         (UpdateUser): fetch a new MembershipUser from the db and call
154         UpdateSelf with it.
155         (ChangePassword): call UpdateUser after changing the password.
156         (ChangePasswordQuestionAndAnswer): same.
157         (ResetPassword): same.
158         (UnlockUser): same.  Also, don't explicitly set isLockedOut.
159         It'll be updated in UpdateSelf.
160         (CreationDate): getter calls ToLocalTime, setter calls
161         ToUniversalTime.
162         (LastActivityDate): same.
163         (LastLoginDate): same.
164         (LastPasswordChangedDate): same.
165         (LastLockoutDate): same.
166         
167         * Membership.cs (.cctor): use
168         ProvidersHelper.InstantitateProviders, and remove some unnecessary
169         #if NET_2_0's.
170
171 2006-03-29  Chris Toshok  <toshok@ximian.com>
172
173         * SqlRoleProvider.cs: do the LOWER's in SQL, not in C#.
174
175 2006-03-23  Chris Toshok  <toshok@ximian.com>
176
177         * Roles.cs: make this 2.0 configuration aware.
178
179         * SqlRoleProvider.cs: flesh out all the operations.  the only
180         things that need dealing with are the Initialize method's handling
181         of a few parameters, and the ApplicationName property.
182
183 2006-03-23  Chris Toshok  <toshok@ximian.com>
184
185         * DefaultAuthenticationModule.cs (OnDefaultAuthentication): always
186         set Thread.CurrentPrincipal, not just if we set it to the
187         GenericPrincipal.
188
189 2006-03-22  Chris Toshok  <toshok@ximian.com>
190
191         * RoleManagerModule.cs: implement using info in Shackow's book.
192
193         * RolePrincipal.cs: flesh this out a bit more.
194
195         * DefaultAuthenticationModule.cs (OnDefaultAuthentication):
196         according to Shackow's book, this sets Thread.CurrentPrincipal as
197         well as HttpContext.Current.User.
198
199 2006-02-28  Chris Toshok  <toshok@ximian.com>
200
201         * FormsAuthentication.cs: corcompare work.
202
203         * MembershipCreateUserException.cs: same.
204
205         * MembershipPasswordException.cs: same.
206
207         * AnonymousIdentificationModule.cs: same.
208
209 2006-02-01  Chris Toshok  <toshok@ximian.com>
210
211         * FormsAuthentication.cs, Membership.cs,
212         FormsAuthenticationModule.cs, UrlAuthorizationModule.cs: oops,
213         replace GetWebApplicationSection with GetSection.
214         
215 2006-02-01  Chris Toshok  <toshok@ximian.com>
216
217         * FormsAuthentication.cs: CONFIGURATION_2_0 => NET_2_0.
218         simplifies the ifdef mess quite a bit.
219
220         * Membership.cs: same.
221
222         * FormsAuthenticationModule.cs: same.
223
224         * UrlAuthorizationModule.cs: same.
225
226 2006-01-04  Chris Toshok  <toshok@ximian.com>
227
228         * FormsAuthentication.cs (Authenticate): add CONFIGURATION_2_0
229         code.
230         (Decrypt2): same.
231         (Decrypt): same.
232         (Encrypt): same.
233         (Initialize): same.
234
235 2006-01-04  Chris Toshok  <toshok@ximian.com>
236
237         * Membership.cs (.cctor): enable the code here under
238         CONFIGURATION_2_0.
239
240 2006-01-03  Chris Toshok  <toshok@ximian.com>
241
242         * UrlAuthorizationModule.cs (OnAuthorizeRequest): add
243         CONFIGURATION_2_0 code here.
244
245 2005-12-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
246
247         * FormsAuthentication.cs: don't end the request in
248         RedirectFromLoginPage.
249
250 2005-12-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
251
252         * FormsAuthenticationModule.cs: expire the cookie. Fixes bug #77043.
253         Patch by Cyrille Colin.
254
255 2005-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
256
257         * FormsAuthenticationModule.cs: ignore any exception thrown when mapping
258         the provided virtual path to the physical one. Patch by Cyrille Colin.
259
260 2005-11-28  Chris Toshok  <toshok@ximian.com>
261
262         * FormsAuthenticationModule.cs (OnAuthenticateRequest):
263         CONFIGURATION_2_0 work.
264         (OnEndRequest): same.
265
266 2005-09-09  Sebastien Pouliot  <sebastien@ximian.com>
267
268         * DefaultAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
269         * DefaultAuthenticationModule.cs: Added LinkDemand for Minimal. Added
270         Demand for UnmanagedCode on constructor.
271         * FileAuthorizationModule.cs: Added LinkDemand for Minimal. Added 
272         Demand for UnmanagedCode on constructor.
273         * FormsAuthentication.cs: Added LinkDemand for Minimal.
274         * FormsAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
275         * FormsAuthenticationModule.cs: Added LinkDemand for Minimal. Added 
276         Demand for UnmanagedCode on constructor.
277         * FormsAuthenticationTicket.cs: Added LinkDemand for Minimal.
278         * FormsIdentity.cs: Added LinkDemand for Minimal.
279         * PassportAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
280         * PassportAuthenticationModule.cs: Added LinkDemand for Minimal. Added
281         Demand for UnmanagedCode on constructor.
282         * PassportIdentity.cs: Added LinkDemand for Minimal. Added Demand for
283         UnmanagedCode on constructor.
284         * UrlAuthorizationModule.cs: Added LinkDemand for Minimal. Added 
285         Demand for UnmanagedCode on constructor.
286         * WindowsAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
287         * WindowsAuthenticationModule.cs: Added LinkDemand for Minimal. Added
288         Demand for UnmanagedCode on constructor.
289
290 2005-09-01  Sebastien Pouliot  <sebastien@ximian.com>
291
292         * FormsAuthenticationEventArgs.cs: Ensure the setter for User is 
293         protected by a demand for ControlPrincipal.
294         * PassportAuthenticationEventArgs.cs: Ensure the setter for User is
295         protected by a demand for ControlPrincipal.
296         * WindowsAuthenticationEventArgs.cs: Ensure the setter for User is 
297         protected by a demand for ControlPrincipal.
298
299 2005-08-25  Sebastien Pouliot  <sebastien@ximian.com> 
300  
301         * FormsAuthentication.cs: With 2.0 we can get the default properties 
302         and call Initialize without a NRE.
303
304 2005-08-25  Sebastien Pouliot  <sebastien@ximian.com>
305
306         * ActiveDirectoryConnectionProtection.cs: New (2.0) enum.
307         * ActiveDirectoryMembershipProvider.cs: Fixed 2.0 API.
308         * AnonymousIdentificationEventArgs.cs: Fixed AnonymousID property case.
309         * AnonymousIdentificationModule.cs: Fixed 2.0 API.
310         * FileAuthorizationModule.cs: Added static CheckFileAccessForUser in 
311         2.0 profile (TODO).
312         * FormsAuthentication.cs: Added missing 2.0 properties with their 
313         default values.
314         * MembershipCreateStatus.cs: Fixed enum values/names.
315         * MembershipProvider.cs: Added stub for [Decrypt|Encrypt]Password. Both
316         methods don't seems to work without an active provider.
317         * PassportIdentity.cs: Added IDispose for 2.0 profile.
318         * Roles.cs: Added missing beta2 bits and default values (which are the
319         only things working without a role provider (web.config).
320         * RolePrincipal.cs: Fixed 2.0 API. Implemented a few bits.
321         * SqlRoleProvider.cs: Fixed 2.0 API.
322         * UrlAuthorizationModule.cs: Added static CheckUrlAccessForPrincipal in
323         2.0 profile (TODO).
324
325 2005-08-24  Sebastien Pouliot  <sebastien@ximian.com>
326
327         * MembershipUserCollection.cs: Fix exceptions.
328
329 2005-08-22  Sebastien Pouliot  <sebastien@ximian.com>
330
331         * FormsAuthentication.cs: Add some 2.0 stuff required for Login* 
332         controls to compile.
333
334 2005-08-18  Sebastien Pouliot  <sebastien@ximian.com>
335
336         * Membership.cs: Commented unworking parts of the .cctor to allow 
337         testing the Login control.
338         * MembershipProviderCollection.cs: Fixed exception handling.
339         * SqlMembershipProvider.cs: Don't throw NotImplementedException 
340         everywhere so Membership's .cctor (somewhat) works. Removed 
341         Description property (not in beta2).
342
343 2005-07-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
344
345         * FormsAuthentication.cs: allow hardware acceleration support if
346         available. Sebastien dixit.
347
348 2005-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
349
350         * FormsAuthentication.cs: the init_vector must be the same accross
351         restarts, otherwise the cookie does not work even when a decryption
352         key is provided. Initialize it to the bytes of the cookie name. Fixes
353         bug #75635.
354
355 2005-07-25  Eyal Alaluf <eyala@mainsoft.com>
356
357         * FormsAuthenticationModule.cs: Check for null config
358
359 2005-07-25  Miguel de Icaza  <miguel@novell.com>
360
361         * FormsAuthentication.cs (SignOut): Force the cookie to have it
362         expire in the past.
363
364 2005-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
365
366         * FormsAuthentication.cs: my previous patch missed a "small" detail: it
367         didn't include the verification key when computing/checking the
368         validation hash. Now this is really a MAC or HMAC or...
369
370 2005-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
371
372         * FormsAuthentication.cs:
373         * FormsAuthenticationTicket.cs: added support for validation and
374         encryption of the auth. cookie and improved serialization of the ticket.
375
376 2005-07-01  Lluis Sanchez Gual <lluis@novell.com>
377
378         * Membership.cs: Read provider info from the config file.
379
380 2005-06-10 Lluis Sanchez Gual <lluis@novell.com>
381
382         * MembershipUserCollection.cs:
383         * MembershipPasswordException.cs:
384         * RoleProviderCollection.cs:
385         * ActiveDirectoryMembershipProvider.cs:
386         * SqlMembershipProvider.cs:
387         * MembershipProvider.cs:
388         * SqlRoleProvider.cs:
389         * Membership.cs:
390         * MembershipUser.cs:
391         * MembershipProviderCollection.cs:
392         * Roles.cs:.
393         * RoleProvider.cs: Track api changes in ASP.NET 2.0. Implemented
394         some missing methods.
395         
396         * AccessRoleProvider.cs:
397         * AccessMembershipProvider.cs: Removed.
398         
399         * MembershipCreateUserException.cs:
400         * MembershipValidatePasswordEventHandler.cs:
401         * ValidatePasswordEventArgs.cs: Implemented.
402
403 2005-05-21  Sebastien Pouliot  <sebastien@ximian.com>
404
405         * FormsAuthentication.cs: Hash the UTF8 representation of the password
406         strings (to be compatible with Microsoft implementation).
407
408 2005-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
409
410         * FormsAuthentication.cs:
411         * PassportAuthenticationModule.cs:
412         * WindowsAuthenticationModule.cs: removed warnings.
413
414 2005-03-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
415
416         * FormsAuthenticationModule.cs: fix for bug 73545, which caused
417         authentication not to work when the cookie was not persistent.
418         Patch by Ilya Kharmatsky (Mainsoft).
419
420 2005-02-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
421
422         * FormsAuthentication.cs: make the string to be stored in a config.
423         file uppercase... See bug #72557.
424
425 2005-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
426
427         * FormsAuthentication.cs: fixed typo when getting the hash for the 
428         password in SHA1 and MD5. Thanks to Tadas Dailyda.
429         Lock on a static object instead of typeof(FormsAuthentication).
430
431 2004-11-18 Lluis Sanchez Gual <lluis@novell.com>
432
433         * RoleProvider.cs, Roles.cs, SqlRoleProvider.cs, RoleProviderCollection.cs,
434         AccessRoleProvider.cs: IRoleProvider has been renamed to ProviderBase.
435         * IMembershipProvider.cs: Deleted.
436         * MembershipProvider.cs, AccessMembershipProvider.cs, MembershipUser.cs,
437         Membership.cs, ADMembershipProvider.cs, SqlMembershipProvider.cs
438         MembershipProviderCollection.cs: MembershipProvider has been deleted
439         and replaced by the abstract class MembershipProvider.
440         * MembershipProviderCollection.cs: Minor fixes.
441         * ADMembershipProvider.cs: Renamed to ActiveDirectoryMembershipProvider.cs.
442
443 2004-11-15 Lluis Sanchez Gual <lluis@novell.com>
444
445         * RoleProviderCollection.cs, MembershipProviderCollection.cs: 
446         Fixed warnings.
447
448 2004-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
449
450         * FormsAuthentication.cs: patch by Jim Pease to fix the date on renewal.
451
452 2004-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
453
454         * FormsAuthenticationModule.cs: don't renew expired cookies. Only renew
455         the cookie if SlidingExpiration is set. Thanks to Jim Pease.
456
457 2004-08-03  Sanjay Gupta <gsanjay@novell.com>
458
459         * MembershipSortOptions.cs:
460         * MembershipPasswordFormat.cs:
461         * MembershipOnlineStatus.cs:
462         * MembershipCreateStatus.cs:
463         * CookieProtection.cs: minor modifications.
464
465 2004-06-12  Pedro Martnez Juli  <yoros@wanadoo.es>
466
467         * FormsAuthentication.cs: Undo last change.
468
469 2004-06-12  Pedro Martnez Juli  <yoros@wanadoo.es>
470
471         * FormsAuthentication.cs: go to loginUrl from web.config settings
472         before try with the default ones.
473
474 2004-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
475
476         * DefaultAuthenticationModule.cs: set the IPrincipal for this thread
477         once we have a user. Fixes bug #59683.
478
479 2004-04-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
480
481         * FormsAuthenticationModule.cs: re-read configuration files if needed
482         when determining if forms auth. is used.
483
484 2004-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
485
486         * FormsAuthentication.cs: added RequireSSL and SlidingExpiration.
487
488 2004-01-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
489
490         * PassportIdentity.cs: Added v 1.1 members
491
492 2003-11-25 Ben Maurer  <bmaurer@users.sourceforge.net>
493         
494         * AccessMembershipProvider.cs: New v2 file
495         * AccessRoleProvider.cs: New v2 file
496         * ADMembershipProvider.cs: New v2 file
497         * AnonymousIdentificationEventArgs.cs: New v2 file
498         * AnonymousIdentificationEventHandler.cs: New v2 file
499         * AnonymousIdentificationModule.cs: New v2 file
500         * CookieProtection.cs: New v2 file
501         * IMembershipProvider.cs: New v2 file
502         * IRoleProvider.cs: New v2 file
503         * Membership.cs: New v2 file
504         * MembershipCreateStatus.cs: New v2 file
505         * MembershipCreateUserException.cs: New v2 file
506         * MembershipOnlineStatus.cs: New v2 file
507         * MembershipPasswordException.cs: New v2 file
508         * MembershipPasswordFormat.cs: New v2 file
509         * MembershipProviderCollection.cs: New v2 file
510         * MembershipSortOptions.cs: New v2 file
511         * MembershipUser.cs: New v2 file
512         * MembershipUserCollection.cs: New v2 file
513         * RoleManagerEventArgs.cs: New v2 file
514         * RoleManagerEventHandler.cs: New v2 file
515         * RoleManagerModule.cs: New v2 file
516         * RolePrincipal.cs: New v2 file
517         * RoleProviderCollection.cs: New v2 file
518         * Roles.cs: New v2 file
519         * SqlMembershipProvider.cs: New v2 file
520         * SqlRoleProvider.cs: New v2 file
521
522 2003-11-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
523
524         * FormsAuthentication.cs: encoding updates.
525
526 2003-10-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
527
528         * FormsAuthenticationModule.cs: fixed for applications other than /.
529
530 2003-08-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
531
532         * UrlAuthorizationModule.cs: fixed description for status code.
533
534 2003-07-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
535
536         * FormsAuthenticationModule.cs: really renew the ticket. Thanks to
537         Jens Thiel <Jens@Thiel.DE>.
538
539 2003-02-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
540
541         * UrlAuthorizationModule.cs: tell the application not to run any other
542         step apart from EndRequest.
543
544 2003-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
545
546         * FormsAuthentication.cs: implemented RedirectFromLoginPage and
547         GetRedirectUrl.
548         
549         * FormsAuthenticationModule.cs: redirect to the login page when a 401
550         error happens.
551
552         * UrlAuthorizationModule.cs: check for valid user or render error page.
553
554 2003-01-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
555
556         * DefaultAuthenticationModule.cs: implemented. It just create a default 
557         unauthenticated user when no one else provided one.
558
559         * FormsAuthenticationModule.cs: removed debug output.
560
561 2002-12-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
562
563         * FormsAuthenticationModule.cs: remove debug lines.
564
565 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
566
567         * FormsAuthentication.cs: return a null ticket when an exception is
568         thrown creating it. Implemented RenewTicketIfOld.
569
570         * FormsAuthenticationModule.cs: implemented event handlers for
571         AuthenticateRequest and EndRequest.
572
573         * FormsAuthenticationTicket.cs: implemented SetDates and Clone methods.
574
575 2002-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
576
577         * FormsAuthentication.cs: implemented GetAuthCookie, SetAuthCookie,
578         SignOut, FormsCookieName and FormsCookiePath.
579
580 2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
581
582         * FormsAuthentication.cs: implemented Authenticate, unencrypted Encrypt
583         and Decrypt, HashPasswordForStoringInConfigFile and Initialize.
584
585         * FormsAuthenticationTicket.cs: set cookiePath to the default when no
586         other provided.
587
588 2002-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
589
590         * DefaultAuthenticationEventHandler.cs:
591         * DefaultAuthenticationModule.cs:
592         * FileAuthorizationModule.cs:
593         * FormsAuthentication.cs:
594         * FormsAuthenticationEventArgs.cs:
595         * FormsAuthenticationEventHandler.cs:
596         * FormsAuthenticationModule.cs:
597         * FormsAuthenticationTicket.cs:
598         * FormsIdentity.cs:
599         * PassportAuthenticationEventArgs.cs:
600         * PassportAuthenticationEventHandler.cs:
601         * PassportAuthenticationModule.cs:
602         * PassportIdentity.cs:
603         * UrlAuthorizationModule.cs:
604         * WindowsAuthenticationEventArgs.cs:
605         * WindowsAuthenticationEventHandler.cs:
606         * WindowsAuthenticationModule.cs: new files. Some of them implemented,
607         some others stubbed out.
608
609 2002-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
610
611         * DefaultAuthenticationEventArgs.cs: added file.
612