C# 和 php 中的 Ruby string#crypt
我有一个 ruby 客户端程序,它使用 string#crypt 来加密密码,
encrypted = password.crypt(SALT)
# removing first two characters which actually are the salt for safety
return encrypted[2, encrypted.size - 2]
然后将其发送到服务器以与存储的预加密字符串进行比较。 我如何需要能够从 ac# 应用程序和 php 网页发送相同的加密密码,并且仍然能够从任何其他客户端使用相同的密码登录。
C# 和 php 中用于加密的等效代码是什么?
I have a ruby client program that encrypts a password with string#crypt like so
encrypted = password.crypt(SALT)
# removing first two characters which actually are the salt for safety
return encrypted[2, encrypted.size - 2]
it then sends it to a server for comparison with it's stored pre-encrypted string.
how ever I need to be able to send the same encrypted password form a c# app and a php web page and still be able to log in with the same password from any of the other clients.
what would be the equivalent code in C# and php for the encryption?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C
crypt(3)
<块引用>
crypt()是密码加密函数。它基于数据加密标准算法,其变化旨在(除其他外)阻止使用密钥搜索的硬件实现。
key 是用户输入的密码。
salt 是从 [a-zA-Z0-9./] 集合中选择的两个字符的字符串。该字符串用于以 4096 种不同方式之一扰乱算法。
Ruby
加密
<块引用>
通过调用标准库函数 crypt 将单向加密哈希应用于 str。参数是盐字符串,长度应为两个字符,每个字符取自 [a-zA-Z0-9./]。
PHP
加密
<块引用>
crypt() 将使用基于标准 Unix DES 的加密算法或系统上可用的替代算法返回加密字符串。
Python
crypt.crypt
<块引用>
该模块实现了 crypt(3) 例程的接口,该例程是基于修改的 DES 算法的单向哈希函数;
C#
.NET Framework 不包含用于 Unix crypt 函数的 API,但以下是一些提供实现的库:
CryptAPI
<块引用>
CryptAPI 是一个 C# 库,包含 .NET 框架(NT、NTLM、BlowFish、DES 和 MD5)中未实现的算法,链接和模拟用 C# 重新编程的 crypt() unix 函数。主要目的是提供向后兼容性。
Unix crypt() 的 AC# 实现
C
crypt(3)
Ruby
crypt
PHP
crypt
Python
crypt.crypt
C#
The .NET Framework doesn't include an API for the Unix crypt function, but here are some libraryies that provide implementations:
CryptAPI
A C# implementation of Unix crypt()