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