ChangeLog 19 KB

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