我需要使用已知的文本密钥在 .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);
}