ChangeLog 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. 2006-08-14 Gonzalo Paniagua Javier <[email protected]>
  2. * FormsAuthentication.cs: set the Secure attribute of the authentication
  3. cookie when required.
  4. 2006-07-06 Konstantin Triger <[email protected]>
  5. * FormsAuthentication.cs: Ensure initialized, fix url mapping.
  6. 2006-05-03 Chris Toshok <[email protected]>
  7. * SqlMembershipProvider.cs (GetAlg): move this here for the time
  8. being, as it's the only class that uses it.
  9. (HashAndBase64Encode): nuke.
  10. (EncryptAndBase64Encode): nuke.
  11. (Base64DecodeAndDecrypt): nuke.
  12. (DecryptPassword): new function.
  13. (EncryptPassword): new function.
  14. (ChangePassword): replace the switch with a call to
  15. EncodePassword.
  16. (ChangePasswordQuestionAndAnswer): same.
  17. (CreateUser): same.
  18. (ResetPassword): same.
  19. (ValidateUsingPassword): same.
  20. (ValidateUsingPasswordAnswer): same.
  21. (GetPassword): same, and throw MembershipPasswordException if the
  22. password answer is incorrect.
  23. * MembershipProvider.cs (InitVector): nuke this. it's actually
  24. the salt from the database (for the sql provider, anyway).
  25. (EncodePassword): based on the password format, password, and
  26. salt, encode it. Makes use of EncryptPassword.
  27. (DecodePassword): likewise for decoding, makes use of
  28. DecryptPassword.
  29. (DecryptPassword): revert this to throwing
  30. NotImplementedException, as the sql provideroverrides it to
  31. perform the actual decryption.
  32. (EncryptPassword): same.
  33. 2006-05-02 Chris Toshok <[email protected]>
  34. * SqlMembershipProvider.cs: 85% complete, maybe more. The major
  35. functionality should work. Password retrieval (and encrypted
  36. passwords in general) is untested.
  37. 2006-05-01 Chris Toshok <[email protected]>
  38. * Membership.cs (GeneratePassword): don't include quotes (',",`)
  39. in the set of characters in the generated passwords.
  40. 2006-05-01 Chris Toshok <[email protected]>
  41. * MembershipProvider.cs (GetAlg): switch from Exception to
  42. ProviderException to match MS behavior (and fix the unit test.)
  43. * Membership.cs (GeneratePassword): implement.
  44. 2006-05-01 Chris Toshok <[email protected]>
  45. * SqlMembershipProvider.cs: lots more work. checking this in in
  46. its present state because I don't want to lose it. It still needs
  47. work.
  48. * Membership.cs (.cctor): remove the fallback.
  49. (ValidatingPassword): remove the MonoTODO.
  50. * MembershipProvider.cs (DecryptPassword): implement.
  51. (EncryptPassword): implement.
  52. (GetAlg): helper function for Decrypt/EncryptPassword.
  53. (InitVector): same.
  54. 2006-04-27 Chris Toshok <[email protected]>
  55. * SqlMembershipProvider.cs (GeneratePassword): call
  56. Membership.GeneratePassword with the configured minimum strength
  57. requirements.
  58. 2006-04-27 Chris Toshok <[email protected]>
  59. * SqlMembershipProvider.cs (UnlockUser): fix sql query, and move
  60. the CheckPararm call to the top of the method.
  61. 2006-04-12 Chris Toshok <[email protected]>
  62. * SqlMembershipProvider.cs: commit initial pass at
  63. SqlMembershipProvider work. lots of stuff untested in here.
  64. 2006-04-11 Chris Toshok <[email protected]>
  65. * MembershipUser.cs (.ctor): per Shackow's book, all DateTime's
  66. are converted using ToUniversalTime when passed into this class.
  67. (UpdateSelf): update ourselves from the passed in MembershipUser,
  68. swallowing NotSupportedExceptions.
  69. (UpdateUser): fetch a new MembershipUser from the db and call
  70. UpdateSelf with it.
  71. (ChangePassword): call UpdateUser after changing the password.
  72. (ChangePasswordQuestionAndAnswer): same.
  73. (ResetPassword): same.
  74. (UnlockUser): same. Also, don't explicitly set isLockedOut.
  75. It'll be updated in UpdateSelf.
  76. (CreationDate): getter calls ToLocalTime, setter calls
  77. ToUniversalTime.
  78. (LastActivityDate): same.
  79. (LastLoginDate): same.
  80. (LastPasswordChangedDate): same.
  81. (LastLockoutDate): same.
  82. * Membership.cs (.cctor): use
  83. ProvidersHelper.InstantitateProviders, and remove some unnecessary
  84. #if NET_2_0's.
  85. 2006-03-29 Chris Toshok <[email protected]>
  86. * SqlRoleProvider.cs: do the LOWER's in SQL, not in C#.
  87. 2006-03-23 Chris Toshok <[email protected]>
  88. * Roles.cs: make this 2.0 configuration aware.
  89. * SqlRoleProvider.cs: flesh out all the operations. the only
  90. things that need dealing with are the Initialize method's handling
  91. of a few parameters, and the ApplicationName property.
  92. 2006-03-23 Chris Toshok <[email protected]>
  93. * DefaultAuthenticationModule.cs (OnDefaultAuthentication): always
  94. set Thread.CurrentPrincipal, not just if we set it to the
  95. GenericPrincipal.
  96. 2006-03-22 Chris Toshok <[email protected]>
  97. * RoleManagerModule.cs: implement using info in Shackow's book.
  98. * RolePrincipal.cs: flesh this out a bit more.
  99. * DefaultAuthenticationModule.cs (OnDefaultAuthentication):
  100. according to Shackow's book, this sets Thread.CurrentPrincipal as
  101. well as HttpContext.Current.User.
  102. 2006-02-28 Chris Toshok <[email protected]>
  103. * FormsAuthentication.cs: corcompare work.
  104. * MembershipCreateUserException.cs: same.
  105. * MembershipPasswordException.cs: same.
  106. * AnonymousIdentificationModule.cs: same.
  107. 2006-02-01 Chris Toshok <[email protected]>
  108. * FormsAuthentication.cs, Membership.cs,
  109. FormsAuthenticationModule.cs, UrlAuthorizationModule.cs: oops,
  110. replace GetWebApplicationSection with GetSection.
  111. 2006-02-01 Chris Toshok <[email protected]>
  112. * FormsAuthentication.cs: CONFIGURATION_2_0 => NET_2_0.
  113. simplifies the ifdef mess quite a bit.
  114. * Membership.cs: same.
  115. * FormsAuthenticationModule.cs: same.
  116. * UrlAuthorizationModule.cs: same.
  117. 2006-01-04 Chris Toshok <[email protected]>
  118. * FormsAuthentication.cs (Authenticate): add CONFIGURATION_2_0
  119. code.
  120. (Decrypt2): same.
  121. (Decrypt): same.
  122. (Encrypt): same.
  123. (Initialize): same.
  124. 2006-01-04 Chris Toshok <[email protected]>
  125. * Membership.cs (.cctor): enable the code here under
  126. CONFIGURATION_2_0.
  127. 2006-01-03 Chris Toshok <[email protected]>
  128. * UrlAuthorizationModule.cs (OnAuthorizeRequest): add
  129. CONFIGURATION_2_0 code here.
  130. 2005-12-22 Gonzalo Paniagua Javier <[email protected]>
  131. * FormsAuthentication.cs: don't end the request in
  132. RedirectFromLoginPage.
  133. 2005-12-22 Gonzalo Paniagua Javier <[email protected]>
  134. * FormsAuthenticationModule.cs: expire the cookie. Fixes bug #77043.
  135. Patch by Cyrille Colin.
  136. 2005-12-13 Gonzalo Paniagua Javier <[email protected]>
  137. * FormsAuthenticationModule.cs: ignore any exception thrown when mapping
  138. the provided virtual path to the physical one. Patch by Cyrille Colin.
  139. 2005-11-28 Chris Toshok <[email protected]>
  140. * FormsAuthenticationModule.cs (OnAuthenticateRequest):
  141. CONFIGURATION_2_0 work.
  142. (OnEndRequest): same.
  143. 2005-09-09 Sebastien Pouliot <[email protected]>
  144. * DefaultAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  145. * DefaultAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  146. Demand for UnmanagedCode on constructor.
  147. * FileAuthorizationModule.cs: Added LinkDemand for Minimal. Added
  148. Demand for UnmanagedCode on constructor.
  149. * FormsAuthentication.cs: Added LinkDemand for Minimal.
  150. * FormsAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  151. * FormsAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  152. Demand for UnmanagedCode on constructor.
  153. * FormsAuthenticationTicket.cs: Added LinkDemand for Minimal.
  154. * FormsIdentity.cs: Added LinkDemand for Minimal.
  155. * PassportAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  156. * PassportAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  157. Demand for UnmanagedCode on constructor.
  158. * PassportIdentity.cs: Added LinkDemand for Minimal. Added Demand for
  159. UnmanagedCode on constructor.
  160. * UrlAuthorizationModule.cs: Added LinkDemand for Minimal. Added
  161. Demand for UnmanagedCode on constructor.
  162. * WindowsAuthenticationEventArgs.cs: Added LinkDemand for Minimal.
  163. * WindowsAuthenticationModule.cs: Added LinkDemand for Minimal. Added
  164. Demand for UnmanagedCode on constructor.
  165. 2005-09-01 Sebastien Pouliot <[email protected]>
  166. * FormsAuthenticationEventArgs.cs: Ensure the setter for User is
  167. protected by a demand for ControlPrincipal.
  168. * PassportAuthenticationEventArgs.cs: Ensure the setter for User is
  169. protected by a demand for ControlPrincipal.
  170. * WindowsAuthenticationEventArgs.cs: Ensure the setter for User is
  171. protected by a demand for ControlPrincipal.
  172. 2005-08-25 Sebastien Pouliot <[email protected]>
  173. * FormsAuthentication.cs: With 2.0 we can get the default properties
  174. and call Initialize without a NRE.
  175. 2005-08-25 Sebastien Pouliot <[email protected]>
  176. * ActiveDirectoryConnectionProtection.cs: New (2.0) enum.
  177. * ActiveDirectoryMembershipProvider.cs: Fixed 2.0 API.
  178. * AnonymousIdentificationEventArgs.cs: Fixed AnonymousID property case.
  179. * AnonymousIdentificationModule.cs: Fixed 2.0 API.
  180. * FileAuthorizationModule.cs: Added static CheckFileAccessForUser in
  181. 2.0 profile (TODO).
  182. * FormsAuthentication.cs: Added missing 2.0 properties with their
  183. default values.
  184. * MembershipCreateStatus.cs: Fixed enum values/names.
  185. * MembershipProvider.cs: Added stub for [Decrypt|Encrypt]Password. Both
  186. methods don't seems to work without an active provider.
  187. * PassportIdentity.cs: Added IDispose for 2.0 profile.
  188. * Roles.cs: Added missing beta2 bits and default values (which are the
  189. only things working without a role provider (web.config).
  190. * RolePrincipal.cs: Fixed 2.0 API. Implemented a few bits.
  191. * SqlRoleProvider.cs: Fixed 2.0 API.
  192. * UrlAuthorizationModule.cs: Added static CheckUrlAccessForPrincipal in
  193. 2.0 profile (TODO).
  194. 2005-08-24 Sebastien Pouliot <[email protected]>
  195. * MembershipUserCollection.cs: Fix exceptions.
  196. 2005-08-22 Sebastien Pouliot <[email protected]>
  197. * FormsAuthentication.cs: Add some 2.0 stuff required for Login*
  198. controls to compile.
  199. 2005-08-18 Sebastien Pouliot <[email protected]>
  200. * Membership.cs: Commented unworking parts of the .cctor to allow
  201. testing the Login control.
  202. * MembershipProviderCollection.cs: Fixed exception handling.
  203. * SqlMembershipProvider.cs: Don't throw NotImplementedException
  204. everywhere so Membership's .cctor (somewhat) works. Removed
  205. Description property (not in beta2).
  206. 2005-07-28 Gonzalo Paniagua Javier <[email protected]>
  207. * FormsAuthentication.cs: allow hardware acceleration support if
  208. available. Sebastien dixit.
  209. 2005-07-26 Gonzalo Paniagua Javier <[email protected]>
  210. * FormsAuthentication.cs: the init_vector must be the same accross
  211. restarts, otherwise the cookie does not work even when a decryption
  212. key is provided. Initialize it to the bytes of the cookie name. Fixes
  213. bug #75635.
  214. 2005-07-25 Eyal Alaluf <[email protected]>
  215. * FormsAuthenticationModule.cs: Check for null config
  216. 2005-07-25 Miguel de Icaza <[email protected]>
  217. * FormsAuthentication.cs (SignOut): Force the cookie to have it
  218. expire in the past.
  219. 2005-07-25 Gonzalo Paniagua Javier <[email protected]>
  220. * FormsAuthentication.cs: my previous patch missed a "small" detail: it
  221. didn't include the verification key when computing/checking the
  222. validation hash. Now this is really a MAC or HMAC or...
  223. 2005-07-25 Gonzalo Paniagua Javier <[email protected]>
  224. * FormsAuthentication.cs:
  225. * FormsAuthenticationTicket.cs: added support for validation and
  226. encryption of the auth. cookie and improved serialization of the ticket.
  227. 2005-07-01 Lluis Sanchez Gual <[email protected]>
  228. * Membership.cs: Read provider info from the config file.
  229. 2005-06-10 Lluis Sanchez Gual <[email protected]>
  230. * MembershipUserCollection.cs:
  231. * MembershipPasswordException.cs:
  232. * RoleProviderCollection.cs:
  233. * ActiveDirectoryMembershipProvider.cs:
  234. * SqlMembershipProvider.cs:
  235. * MembershipProvider.cs:
  236. * SqlRoleProvider.cs:
  237. * Membership.cs:
  238. * MembershipUser.cs:
  239. * MembershipProviderCollection.cs:
  240. * Roles.cs:.
  241. * RoleProvider.cs: Track api changes in ASP.NET 2.0. Implemented
  242. some missing methods.
  243. * AccessRoleProvider.cs:
  244. * AccessMembershipProvider.cs: Removed.
  245. * MembershipCreateUserException.cs:
  246. * MembershipValidatePasswordEventHandler.cs:
  247. * ValidatePasswordEventArgs.cs: Implemented.
  248. 2005-05-21 Sebastien Pouliot <[email protected]>
  249. * FormsAuthentication.cs: Hash the UTF8 representation of the password
  250. strings (to be compatible with Microsoft implementation).
  251. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  252. * FormsAuthentication.cs:
  253. * PassportAuthenticationModule.cs:
  254. * WindowsAuthenticationModule.cs: removed warnings.
  255. 2005-03-11 Gonzalo Paniagua Javier <[email protected]>
  256. * FormsAuthenticationModule.cs: fix for bug 73545, which caused
  257. authentication not to work when the cookie was not persistent.
  258. Patch by Ilya Kharmatsky (Mainsoft).
  259. 2005-02-23 Gonzalo Paniagua Javier <[email protected]>
  260. * FormsAuthentication.cs: make the string to be stored in a config.
  261. file uppercase... See bug #72557.
  262. 2005-02-06 Gonzalo Paniagua Javier <[email protected]>
  263. * FormsAuthentication.cs: fixed typo when getting the hash for the
  264. password in SHA1 and MD5. Thanks to Tadas Dailyda.
  265. Lock on a static object instead of typeof(FormsAuthentication).
  266. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  267. * RoleProvider.cs, Roles.cs, SqlRoleProvider.cs, RoleProviderCollection.cs,
  268. AccessRoleProvider.cs: IRoleProvider has been renamed to ProviderBase.
  269. * IMembershipProvider.cs: Deleted.
  270. * MembershipProvider.cs, AccessMembershipProvider.cs, MembershipUser.cs,
  271. Membership.cs, ADMembershipProvider.cs, SqlMembershipProvider.cs
  272. MembershipProviderCollection.cs: MembershipProvider has been deleted
  273. and replaced by the abstract class MembershipProvider.
  274. * MembershipProviderCollection.cs: Minor fixes.
  275. * ADMembershipProvider.cs: Renamed to ActiveDirectoryMembershipProvider.cs.
  276. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  277. * RoleProviderCollection.cs, MembershipProviderCollection.cs:
  278. Fixed warnings.
  279. 2004-08-23 Gonzalo Paniagua Javier <[email protected]>
  280. * FormsAuthentication.cs: patch by Jim Pease to fix the date on renewal.
  281. 2004-08-22 Gonzalo Paniagua Javier <[email protected]>
  282. * FormsAuthenticationModule.cs: don't renew expired cookies. Only renew
  283. the cookie if SlidingExpiration is set. Thanks to Jim Pease.
  284. 2004-08-03 Sanjay Gupta <[email protected]>
  285. * MembershipSortOptions.cs:
  286. * MembershipPasswordFormat.cs:
  287. * MembershipOnlineStatus.cs:
  288. * MembershipCreateStatus.cs:
  289. * CookieProtection.cs: minor modifications.
  290. 2004-06-12 Pedro Martnez Juli <[email protected]>
  291. * FormsAuthentication.cs: Undo last change.
  292. 2004-06-12 Pedro Martnez Juli <[email protected]>
  293. * FormsAuthentication.cs: go to loginUrl from web.config settings
  294. before try with the default ones.
  295. 2004-06-11 Gonzalo Paniagua Javier <[email protected]>
  296. * DefaultAuthenticationModule.cs: set the IPrincipal for this thread
  297. once we have a user. Fixes bug #59683.
  298. 2004-04-21 Gonzalo Paniagua Javier <[email protected]>
  299. * FormsAuthenticationModule.cs: re-read configuration files if needed
  300. when determining if forms auth. is used.
  301. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  302. * FormsAuthentication.cs: added RequireSSL and SlidingExpiration.
  303. 2004-01-11 Andreas Nahr <[email protected]>
  304. * PassportIdentity.cs: Added v 1.1 members
  305. 2003-11-25 Ben Maurer <[email protected]>
  306. * AccessMembershipProvider.cs: New v2 file
  307. * AccessRoleProvider.cs: New v2 file
  308. * ADMembershipProvider.cs: New v2 file
  309. * AnonymousIdentificationEventArgs.cs: New v2 file
  310. * AnonymousIdentificationEventHandler.cs: New v2 file
  311. * AnonymousIdentificationModule.cs: New v2 file
  312. * CookieProtection.cs: New v2 file
  313. * IMembershipProvider.cs: New v2 file
  314. * IRoleProvider.cs: New v2 file
  315. * Membership.cs: New v2 file
  316. * MembershipCreateStatus.cs: New v2 file
  317. * MembershipCreateUserException.cs: New v2 file
  318. * MembershipOnlineStatus.cs: New v2 file
  319. * MembershipPasswordException.cs: New v2 file
  320. * MembershipPasswordFormat.cs: New v2 file
  321. * MembershipProviderCollection.cs: New v2 file
  322. * MembershipSortOptions.cs: New v2 file
  323. * MembershipUser.cs: New v2 file
  324. * MembershipUserCollection.cs: New v2 file
  325. * RoleManagerEventArgs.cs: New v2 file
  326. * RoleManagerEventHandler.cs: New v2 file
  327. * RoleManagerModule.cs: New v2 file
  328. * RolePrincipal.cs: New v2 file
  329. * RoleProviderCollection.cs: New v2 file
  330. * Roles.cs: New v2 file
  331. * SqlMembershipProvider.cs: New v2 file
  332. * SqlRoleProvider.cs: New v2 file
  333. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  334. * FormsAuthentication.cs: encoding updates.
  335. 2003-10-04 Gonzalo Paniagua Javier <[email protected]>
  336. * FormsAuthenticationModule.cs: fixed for applications other than /.
  337. 2003-08-27 Gonzalo Paniagua Javier <[email protected]>
  338. * UrlAuthorizationModule.cs: fixed description for status code.
  339. 2003-07-31 Gonzalo Paniagua Javier <[email protected]>
  340. * FormsAuthenticationModule.cs: really renew the ticket. Thanks to
  341. Jens Thiel <[email protected]>.
  342. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  343. * UrlAuthorizationModule.cs: tell the application not to run any other
  344. step apart from EndRequest.
  345. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  346. * FormsAuthentication.cs: implemented RedirectFromLoginPage and
  347. GetRedirectUrl.
  348. * FormsAuthenticationModule.cs: redirect to the login page when a 401
  349. error happens.
  350. * UrlAuthorizationModule.cs: check for valid user or render error page.
  351. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  352. * DefaultAuthenticationModule.cs: implemented. It just create a default
  353. unauthenticated user when no one else provided one.
  354. * FormsAuthenticationModule.cs: removed debug output.
  355. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  356. * FormsAuthenticationModule.cs: remove debug lines.
  357. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  358. * FormsAuthentication.cs: return a null ticket when an exception is
  359. thrown creating it. Implemented RenewTicketIfOld.
  360. * FormsAuthenticationModule.cs: implemented event handlers for
  361. AuthenticateRequest and EndRequest.
  362. * FormsAuthenticationTicket.cs: implemented SetDates and Clone methods.
  363. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  364. * FormsAuthentication.cs: implemented GetAuthCookie, SetAuthCookie,
  365. SignOut, FormsCookieName and FormsCookiePath.
  366. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  367. * FormsAuthentication.cs: implemented Authenticate, unencrypted Encrypt
  368. and Decrypt, HashPasswordForStoringInConfigFile and Initialize.
  369. * FormsAuthenticationTicket.cs: set cookiePath to the default when no
  370. other provided.
  371. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  372. * DefaultAuthenticationEventHandler.cs:
  373. * DefaultAuthenticationModule.cs:
  374. * FileAuthorizationModule.cs:
  375. * FormsAuthentication.cs:
  376. * FormsAuthenticationEventArgs.cs:
  377. * FormsAuthenticationEventHandler.cs:
  378. * FormsAuthenticationModule.cs:
  379. * FormsAuthenticationTicket.cs:
  380. * FormsIdentity.cs:
  381. * PassportAuthenticationEventArgs.cs:
  382. * PassportAuthenticationEventHandler.cs:
  383. * PassportAuthenticationModule.cs:
  384. * PassportIdentity.cs:
  385. * UrlAuthorizationModule.cs:
  386. * WindowsAuthenticationEventArgs.cs:
  387. * WindowsAuthenticationEventHandler.cs:
  388. * WindowsAuthenticationModule.cs: new files. Some of them implemented,
  389. some others stubbed out.
  390. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  391. * DefaultAuthenticationEventArgs.cs: added file.