我需要使用已知的文本密钥加密.net应用程序中的文本字符串,然后使用相同的已知密钥在Ruby中对其进行解密...但是我无法实现这一点。我认为这与字符串编码问题有关。 .Net到Ruby RC4的例子已被证明是难以捉摸的。
我在Ruby方面收到了无效的解密。加密/解密在.net实现上工作正常。但是当我将加密值复制到Ruby实现并使用相同的密钥时,我没有得到原始值。
下面是我的.net RC4实现(这不需要最高级别的安全性,但有些很好):)
在红宝石方面,我正在使用ruby-rc4 https://github.com/caiges/Ruby-RC4
public string keytext = "thisismykey";
public Form1()
{
InitializeComponent();
}
public void RC4(ref Byte[] bytes, Byte[] key)
{
Byte[] s = new Byte[256];
Byte[] k = new Byte[256];
Byte temp;
int i, j;
for (i = 0; i < 256; i++)
{
s[i] = (Byte)i;
k[i] = key[i % key.GetLength(0)];
}
j = 0;
for (i = 0; i < 256; i++)
{
j = (j + s[i] + k[i]) % 256;
temp = s[i];
s[i] = s[j];
s[j] = temp;
}
i = j = 0;
for (int x = 0; x < bytes.GetLength(0); x++)
{
i = (i + 1) % 256;
j = (j + s[i]) % 256;
temp = s[i];
s[i] = s[j];
s[j] = temp;
int t = (s[i] + s[j]) % 256;
bytes[x] ^= s[t];
}
}
static byte[] GetBytes(string str)
{
Byte[] bytes = new byte[str.Length * sizeof(char)];
System.Buffer.BlockCopy(str.ToCharArray(), 0, bytes, 0, bytes.Length);
return bytes;
}
static string GetString(byte[] bytes)
{
char[] chars = new char[bytes.Length / sizeof(char)];
System.Buffer.BlockCopy(bytes, 0, chars, 0, bytes.Length);
return new string(chars);
}
private void button1_Click(object sender, EventArgs e)
{
Byte[] content = Encoding.ASCII.GetBytes(textBox1.Text);
RC4(ref content, Encoding.ASCII.GetBytes(keytext));
textBox2.Text = Encoding.ASCII.GetString(content);
RC4(ref content, Encoding.ASCII.GetBytes(keytext));
label1.Text = Encoding.ASCII.GetString(content);
}
答案 0 :(得分:0)
问题很可能发生,因为ASCII编码是7位,并且无法为127以上的值重新创建字符。尝试使用UTF-8编码或将字节数组转换为Base64字符串。