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