gpt4 book ai didi

c# - System.Web.Security 的替代方案,使用相同的数据库

转载 作者:太空宇宙 更新时间:2023-11-03 14:11:24 25 4
gpt4 key购买 nike

我正在编写一个 WinForms 应用程序来迁移大量数据。新系统基于网络并使用 ASP.NET 成员(member) API。

我必须使用事务将大量数据库插入和更新包装到单个事务中。这包括更新用户和角色(aspnet_Users、aspnet_Roles 等)我已经成功引用了 System.Web.Membership 并在我的应用程序中使用它在开始迁移之前验证数据,所以这不是问题。

但是,问题是在迁移期间,当我将所有数据库调用包装在一个事务中时。由于成员(member)代码关闭了连接,我得到一个 DTC 错误,说分布式事务未启用。我想避免更改客户端计算机上的任何内容,因此我正在寻找一种方法来更新具有回滚能力的用户和角色。

目前,据我所知,我唯一的选择是直接调用存储过程,避免使用 Membership API。如果可能的话,我也想避免这种情况,所以我想知道是否有一种方法可以在事务中使用成员资格 API,或者是否有一个使用相同数据库表但可以很好地处理事务的替代库。

非常感谢任何人的任何输入!

最佳答案

我最终直接调用了存储过程。我遇到的唯一障碍是创建新用户。它需要密码和安全答案加密,为此我只是从框架源代码中复制了代码。确切地说,来自 System.Web.Security.SqlMembershipProvider.cs

我已经删除并修剪了部分代码以适应我自己的情况,因为我只使用 SHA1 加密。

我很确定我不是唯一遇到此问题的人,因此对于遇到同样问题的任何其他人,这里有一段比较完整的用于插入用户的代码。其他存储过程更容易调用。

这里几乎没有错误检查,所以添加你自己的并使用System.Security.Cryptography

//Call to create a new user and return the ID
public static Guid? CreateUser(MyDataContext DB, string UserName, string Password, string Email, string PasswordQuestion, string PasswordAnswer)
{
string salt = GenerateSalt();
string password = EncodePassword(Password, salt);
string encodedPasswordAnswer = EncodePassword(PasswordAnswer.ToLower(), salt);
DateTime dt = DateTime.UtcNow;

Guid? newUserID = null;

//res would contain the success or fail code from the stored procedure
//0 = success; 1 = fail;
int res = DB.aspnet_Membership_CreateUser( "[My app name]", UserName, password, salt, Email, PasswordQuestion, encodedPasswordAnswer, true, dt, DateTime.Now, 0, 1, ref newUserID);

return newUserID;
}

private static string GenerateSalt()
{
byte[] buf = new byte[16];
(new RNGCryptoServiceProvider()).GetBytes(buf);
return Convert.ToBase64String(buf);
}
private static string EncodePassword(string pass, string salt)
{
byte[] bIn = Encoding.Unicode.GetBytes(pass);
byte[] bSalt = Convert.FromBase64String(salt);
byte[] bRet = null;

HashAlgorithm hm = HashAlgorithm.Create("SHA1");
if (hm is KeyedHashAlgorithm)
{
KeyedHashAlgorithm kha = (KeyedHashAlgorithm)hm;
if (kha.Key.Length == bSalt.Length)
{
kha.Key = bSalt;
}
else if (kha.Key.Length < bSalt.Length)
{
byte[] bKey = new byte[kha.Key.Length];
Buffer.BlockCopy(bSalt, 0, bKey, 0, bKey.Length);
kha.Key = bKey;
}
else
{
byte[] bKey = new byte[kha.Key.Length];
for (int iter = 0; iter < bKey.Length; )
{
int len = Math.Min(bSalt.Length, bKey.Length - iter);
Buffer.BlockCopy(bSalt, 0, bKey, iter, len);
iter += len;
}
kha.Key = bKey;
}
bRet = kha.ComputeHash(bIn);
}
else
{
byte[] bAll = new byte[bSalt.Length + bIn.Length];
Buffer.BlockCopy(bSalt, 0, bAll, 0, bSalt.Length);
Buffer.BlockCopy(bIn, 0, bAll, bSalt.Length, bIn.Length);
bRet = hm.ComputeHash(bAll);
}
return Convert.ToBase64String(bRet);
}

关于c# - System.Web.Security 的替代方案,使用相同的数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7760293/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com