2
0

ChangeLog 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. 2005-07-28 Gonzalo Paniagua Javier <[email protected]>
  2. * FormsAuthentication.cs: allow hardware acceleration support if
  3. available. Sebastien dixit.
  4. 2005-07-26 Gonzalo Paniagua Javier <[email protected]>
  5. * FormsAuthentication.cs: the init_vector must be the same accross
  6. restarts, otherwise the cookie does not work even when a decryption
  7. key is provided. Initialize it to the bytes of the cookie name. Fixes
  8. bug #75635.
  9. 2005-07-25 Eyal Alaluf <[email protected]>
  10. * FormsAuthenticationModule.cs: Check for null config
  11. 2005-07-25 Gonzalo Paniagua Javier <[email protected]>
  12. * FormsAuthentication.cs: my previous patch missed a "small" detail: it
  13. didn't include the verification key when computing/checking the
  14. validation hash. Now this is really a MAC or HMAC or...
  15. 2005-07-25 Gonzalo Paniagua Javier <[email protected]>
  16. * FormsAuthentication.cs:
  17. * FormsAuthenticationTicket.cs: added support for validation and
  18. encryption of the auth. cookie and improved serialization of the ticket.
  19. 2005-07-01 Lluis Sanchez Gual <[email protected]>
  20. * Membership.cs: Read provider info from the config file.
  21. 2005-06-10 Lluis Sanchez Gual <[email protected]>
  22. * MembershipUserCollection.cs:
  23. * MembershipPasswordException.cs:
  24. * RoleProviderCollection.cs:
  25. * ActiveDirectoryMembershipProvider.cs:
  26. * SqlMembershipProvider.cs:
  27. * MembershipProvider.cs:
  28. * SqlRoleProvider.cs:
  29. * Membership.cs:
  30. * MembershipUser.cs:
  31. * MembershipProviderCollection.cs:
  32. * Roles.cs:.
  33. * RoleProvider.cs: Track api changes in ASP.NET 2.0. Implemented
  34. some missing methods.
  35. * AccessRoleProvider.cs:
  36. * AccessMembershipProvider.cs: Removed.
  37. * MembershipCreateUserException.cs:
  38. * MembershipValidatePasswordEventHandler.cs:
  39. * ValidatePasswordEventArgs.cs: Implemented.
  40. 2005-05-21 Sebastien Pouliot <[email protected]>
  41. * FormsAuthentication.cs: Hash the UTF8 representation of the password
  42. strings (to be compatible with Microsoft implementation).
  43. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  44. * FormsAuthentication.cs:
  45. * PassportAuthenticationModule.cs:
  46. * WindowsAuthenticationModule.cs: removed warnings.
  47. 2005-03-11 Gonzalo Paniagua Javier <[email protected]>
  48. * FormsAuthenticationModule.cs: fix for bug 73545, which caused
  49. authentication not to work when the cookie was not persistent.
  50. Patch by Ilya Kharmatsky (Mainsoft).
  51. 2005-02-23 Gonzalo Paniagua Javier <[email protected]>
  52. * FormsAuthentication.cs: make the string to be stored in a config.
  53. file uppercase... See bug #72557.
  54. 2005-02-06 Gonzalo Paniagua Javier <[email protected]>
  55. * FormsAuthentication.cs: fixed typo when getting the hash for the
  56. password in SHA1 and MD5. Thanks to Tadas Dailyda.
  57. Lock on a static object instead of typeof(FormsAuthentication).
  58. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  59. * RoleProvider.cs, Roles.cs, SqlRoleProvider.cs, RoleProviderCollection.cs,
  60. AccessRoleProvider.cs: IRoleProvider has been renamed to ProviderBase.
  61. * IMembershipProvider.cs: Deleted.
  62. * MembershipProvider.cs, AccessMembershipProvider.cs, MembershipUser.cs,
  63. Membership.cs, ADMembershipProvider.cs, SqlMembershipProvider.cs
  64. MembershipProviderCollection.cs: MembershipProvider has been deleted
  65. and replaced by the abstract class MembershipProvider.
  66. * MembershipProviderCollection.cs: Minor fixes.
  67. * ADMembershipProvider.cs: Renamed to ActiveDirectoryMembershipProvider.cs.
  68. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  69. * RoleProviderCollection.cs, MembershipProviderCollection.cs:
  70. Fixed warnings.
  71. 2004-08-23 Gonzalo Paniagua Javier <[email protected]>
  72. * FormsAuthentication.cs: patch by Jim Pease to fix the date on renewal.
  73. 2004-08-22 Gonzalo Paniagua Javier <[email protected]>
  74. * FormsAuthenticationModule.cs: don't renew expired cookies. Only renew
  75. the cookie if SlidingExpiration is set. Thanks to Jim Pease.
  76. 2004-08-03 Sanjay Gupta <[email protected]>
  77. * MembershipSortOptions.cs:
  78. * MembershipPasswordFormat.cs:
  79. * MembershipOnlineStatus.cs:
  80. * MembershipCreateStatus.cs:
  81. * CookieProtection.cs: minor modifications.
  82. 2004-06-12 Pedro Martnez Juli <[email protected]>
  83. * FormsAuthentication.cs: Undo last change.
  84. 2004-06-12 Pedro Martnez Juli <[email protected]>
  85. * FormsAuthentication.cs: go to loginUrl from web.config settings
  86. before try with the default ones.
  87. 2004-06-11 Gonzalo Paniagua Javier <[email protected]>
  88. * DefaultAuthenticationModule.cs: set the IPrincipal for this thread
  89. once we have a user. Fixes bug #59683.
  90. 2004-04-21 Gonzalo Paniagua Javier <[email protected]>
  91. * FormsAuthenticationModule.cs: re-read configuration files if needed
  92. when determining if forms auth. is used.
  93. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  94. * FormsAuthentication.cs: added RequireSSL and SlidingExpiration.
  95. 2004-01-11 Andreas Nahr <[email protected]>
  96. * PassportIdentity.cs: Added v 1.1 members
  97. 2003-11-25 Ben Maurer <[email protected]>
  98. * AccessMembershipProvider.cs: New v2 file
  99. * AccessRoleProvider.cs: New v2 file
  100. * ADMembershipProvider.cs: New v2 file
  101. * AnonymousIdentificationEventArgs.cs: New v2 file
  102. * AnonymousIdentificationEventHandler.cs: New v2 file
  103. * AnonymousIdentificationModule.cs: New v2 file
  104. * CookieProtection.cs: New v2 file
  105. * IMembershipProvider.cs: New v2 file
  106. * IRoleProvider.cs: New v2 file
  107. * Membership.cs: New v2 file
  108. * MembershipCreateStatus.cs: New v2 file
  109. * MembershipCreateUserException.cs: New v2 file
  110. * MembershipOnlineStatus.cs: New v2 file
  111. * MembershipPasswordException.cs: New v2 file
  112. * MembershipPasswordFormat.cs: New v2 file
  113. * MembershipProviderCollection.cs: New v2 file
  114. * MembershipSortOptions.cs: New v2 file
  115. * MembershipUser.cs: New v2 file
  116. * MembershipUserCollection.cs: New v2 file
  117. * RoleManagerEventArgs.cs: New v2 file
  118. * RoleManagerEventHandler.cs: New v2 file
  119. * RoleManagerModule.cs: New v2 file
  120. * RolePrincipal.cs: New v2 file
  121. * RoleProviderCollection.cs: New v2 file
  122. * Roles.cs: New v2 file
  123. * SqlMembershipProvider.cs: New v2 file
  124. * SqlRoleProvider.cs: New v2 file
  125. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  126. * FormsAuthentication.cs: encoding updates.
  127. 2003-10-04 Gonzalo Paniagua Javier <[email protected]>
  128. * FormsAuthenticationModule.cs: fixed for applications other than /.
  129. 2003-08-27 Gonzalo Paniagua Javier <[email protected]>
  130. * UrlAuthorizationModule.cs: fixed description for status code.
  131. 2003-07-31 Gonzalo Paniagua Javier <[email protected]>
  132. * FormsAuthenticationModule.cs: really renew the ticket. Thanks to
  133. Jens Thiel <[email protected]>.
  134. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  135. * UrlAuthorizationModule.cs: tell the application not to run any other
  136. step apart from EndRequest.
  137. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  138. * FormsAuthentication.cs: implemented RedirectFromLoginPage and
  139. GetRedirectUrl.
  140. * FormsAuthenticationModule.cs: redirect to the login page when a 401
  141. error happens.
  142. * UrlAuthorizationModule.cs: check for valid user or render error page.
  143. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  144. * DefaultAuthenticationModule.cs: implemented. It just create a default
  145. unauthenticated user when no one else provided one.
  146. * FormsAuthenticationModule.cs: removed debug output.
  147. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  148. * FormsAuthenticationModule.cs: remove debug lines.
  149. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  150. * FormsAuthentication.cs: return a null ticket when an exception is
  151. thrown creating it. Implemented RenewTicketIfOld.
  152. * FormsAuthenticationModule.cs: implemented event handlers for
  153. AuthenticateRequest and EndRequest.
  154. * FormsAuthenticationTicket.cs: implemented SetDates and Clone methods.
  155. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  156. * FormsAuthentication.cs: implemented GetAuthCookie, SetAuthCookie,
  157. SignOut, FormsCookieName and FormsCookiePath.
  158. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  159. * FormsAuthentication.cs: implemented Authenticate, unencrypted Encrypt
  160. and Decrypt, HashPasswordForStoringInConfigFile and Initialize.
  161. * FormsAuthenticationTicket.cs: set cookiePath to the default when no
  162. other provided.
  163. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  164. * DefaultAuthenticationEventHandler.cs:
  165. * DefaultAuthenticationModule.cs:
  166. * FileAuthorizationModule.cs:
  167. * FormsAuthentication.cs:
  168. * FormsAuthenticationEventArgs.cs:
  169. * FormsAuthenticationEventHandler.cs:
  170. * FormsAuthenticationModule.cs:
  171. * FormsAuthenticationTicket.cs:
  172. * FormsIdentity.cs:
  173. * PassportAuthenticationEventArgs.cs:
  174. * PassportAuthenticationEventHandler.cs:
  175. * PassportAuthenticationModule.cs:
  176. * PassportIdentity.cs:
  177. * UrlAuthorizationModule.cs:
  178. * WindowsAuthenticationEventArgs.cs:
  179. * WindowsAuthenticationEventHandler.cs:
  180. * WindowsAuthenticationModule.cs: new files. Some of them implemented,
  181. some others stubbed out.
  182. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  183. * DefaultAuthenticationEventArgs.cs: added file.