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