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