MembershipProvider.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. //
  2. // System.Web.Security.MembershipProvider
  3. //
  4. // Authors:
  5. // Ben Maurer ([email protected])
  6. // Lluis Sanchez Gual ([email protected])
  7. //
  8. // (C) 2003 Ben Maurer
  9. // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
  10. //
  11. // Permission is hereby granted, free of charge, to any person obtaining
  12. // a copy of this software and associated documentation files (the
  13. // "Software"), to deal in the Software without restriction, including
  14. // without limitation the rights to use, copy, modify, merge, publish,
  15. // distribute, sublicense, and/or sell copies of the Software, and to
  16. // permit persons to whom the Software is furnished to do so, subject to
  17. // the following conditions:
  18. //
  19. // The above copyright notice and this permission notice shall be
  20. // included in all copies or substantial portions of the Software.
  21. //
  22. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  23. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  24. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  25. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  26. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  27. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  28. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  29. //
  30. #if NET_2_0
  31. using System.Configuration.Provider;
  32. using System.Web.Configuration;
  33. using System.Security.Cryptography;
  34. using System.Text;
  35. namespace System.Web.Security
  36. {
  37. public abstract class MembershipProvider : ProviderBase
  38. {
  39. protected MembershipProvider ()
  40. {
  41. }
  42. public abstract bool ChangePassword (string name, string oldPwd, string newPwd);
  43. public abstract bool ChangePasswordQuestionAndAnswer (string name, string password, string newPwdQuestion, string newPwdAnswer);
  44. public abstract MembershipUser CreateUser (string username, string password, string email, string pwdQuestion, string pwdAnswer, bool isApproved, object providerUserKey, out MembershipCreateStatus status);
  45. public abstract bool DeleteUser (string name, bool deleteAllRelatedData);
  46. public abstract MembershipUserCollection FindUsersByEmail (string emailToMatch, int pageIndex, int pageSize, out int totalRecords);
  47. public abstract MembershipUserCollection FindUsersByName (string nameToMatch, int pageIndex, int pageSize, out int totalRecords);
  48. public abstract MembershipUserCollection GetAllUsers (int pageIndex, int pageSize, out int totalRecords);
  49. public abstract int GetNumberOfUsersOnline ();
  50. public abstract string GetPassword (string name, string answer);
  51. public abstract MembershipUser GetUser (string name, bool userIsOnline);
  52. public abstract MembershipUser GetUser (object providerUserKey, bool userIsOnline);
  53. public abstract string GetUserNameByEmail (string email);
  54. public abstract string ResetPassword (string name, string answer);
  55. public abstract void UpdateUser (MembershipUser user);
  56. public abstract bool ValidateUser (string name, string password);
  57. public abstract bool UnlockUser (string userName);
  58. public abstract string ApplicationName { get; set; }
  59. public abstract bool EnablePasswordReset { get; }
  60. public abstract bool EnablePasswordRetrieval { get; }
  61. public abstract bool RequiresQuestionAndAnswer { get; }
  62. public abstract int MaxInvalidPasswordAttempts { get; }
  63. public abstract int MinRequiredNonAlphanumericCharacters { get; }
  64. public abstract int MinRequiredPasswordLength { get; }
  65. public abstract int PasswordAttemptWindow { get; }
  66. public abstract MembershipPasswordFormat PasswordFormat { get; }
  67. public abstract string PasswordStrengthRegularExpression { get; }
  68. public abstract bool RequiresUniqueEmail { get; }
  69. protected virtual void OnValidatingPassword (ValidatePasswordEventArgs args)
  70. {
  71. if (ValidatingPassword != null)
  72. ValidatingPassword (this, args);
  73. }
  74. SymmetricAlgorithm GetAlg (out byte [] decryptionKey)
  75. {
  76. MachineKeySection section = (MachineKeySection) WebConfigurationManager.GetSection ("system.web/machineKey");
  77. if (section.DecryptionKey.StartsWith ("AutoGenerate"))
  78. throw new ProviderException ("You must explicitly specify a decryption key in the <machineKey> section when using encrypted passwords.");
  79. string alg_type = section.Decryption;
  80. if (alg_type == "Auto")
  81. alg_type = "AES";
  82. SymmetricAlgorithm alg = null;
  83. if (alg_type == "AES")
  84. alg = Rijndael.Create ();
  85. else if (alg_type == "3DES")
  86. alg = TripleDES.Create ();
  87. else
  88. throw new ProviderException (String.Format ("Unsupported decryption attribute '{0}' in <machineKey> configuration section", alg_type));
  89. decryptionKey = section.DecryptionKey192Bits;
  90. return alg;
  91. }
  92. internal const int SALT_BYTES = 16;
  93. protected virtual byte [] DecryptPassword (byte [] encodedPassword)
  94. {
  95. byte [] decryptionKey;
  96. using (SymmetricAlgorithm alg = GetAlg (out decryptionKey)) {
  97. alg.Key = decryptionKey;
  98. using (ICryptoTransform decryptor = alg.CreateDecryptor ()) {
  99. byte [] buf = decryptor.TransformFinalBlock (encodedPassword, 0, encodedPassword.Length);
  100. byte [] rv = new byte [buf.Length - SALT_BYTES];
  101. Array.Copy (buf, 16, rv, 0, buf.Length - 16);
  102. return rv;
  103. }
  104. }
  105. }
  106. protected virtual byte[] EncryptPassword (byte[] password)
  107. {
  108. byte [] decryptionKey;
  109. byte [] iv = new byte [SALT_BYTES];
  110. Array.Copy (password, 0, iv, 0, SALT_BYTES);
  111. Array.Clear (password, 0, SALT_BYTES);
  112. using (SymmetricAlgorithm alg = GetAlg (out decryptionKey)) {
  113. using (ICryptoTransform encryptor = alg.CreateEncryptor (decryptionKey, iv)) {
  114. return encryptor.TransformFinalBlock (password, 0, password.Length);
  115. }
  116. }
  117. }
  118. public event MembershipValidatePasswordEventHandler ValidatingPassword;
  119. }
  120. }
  121. #endif