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