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