ChangeLog 19 KB

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