如何使用c#生成joomla用户密码?

发布于 2024-10-22 07:36:37 字数 185 浏览 2 评论 0原文

有一个关于生成 joomla pass 的 php 代码的问题:使用 php 来创建joomla 用户密码? ,有什么想法如何在 ac# 上做到这一点吗?

there is a question about php code to geneate joomla pass: using php to create a joomla user password? , any ideas how to do it on a c#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦幻的心爱 2024-10-29 07:36:37

您最好的选择是将 Joomla 使用的代码移植到您自己的库中作为静态方法。最后您所要做的就是获取 PHP 进程:

$salt = JUserHelper::genRandomPassword(32);
$crypt = JUserHelper::getCryptedPassword(password, $salt);
$dbPassword = $crypt.':'.$salt;

并将其转换为 C#:

string salt = Libraries.JUserHelper.genRandomPassword(32);
string crypt = Libraries.JUserHelper.getCryptedPassword(password, salt);
string dbPassword = string.Format("{0}:{1}", crypt, salt);

Your best bet would be to port the code Joomla uses into your own libraries as static methods. All you have to do in the end would be to take the PHP process:

$salt = JUserHelper::genRandomPassword(32);
$crypt = JUserHelper::getCryptedPassword(password, $salt);
$dbPassword = $crypt.':'.$salt;

and convert it to C#:

string salt = Libraries.JUserHelper.genRandomPassword(32);
string crypt = Libraries.JUserHelper.getCryptedPassword(password, salt);
string dbPassword = string.Format("{0}:{1}", crypt, salt);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文