我必须编写一个Vigenere加密/解密函数,它在完整字节上运行(通过tcp加密和发送文件,然后在另一侧解密)。 我的加密功能似乎正常工作(或多或少,没有解密功能就无法真正测试它。)
这是加密功能的代码:
public static Byte[] encryptByteVigenere(Byte[] plaintext, string key)
{
Byte[] result= new Byte[plaintext.Length];
key = key.Trim().ToUpper();
int keyIndex = 0;
int keylength = key.Length;
for (int i = 0; i < plaintext.Length; i++)
{
keyIndex = keyIndex % keylength;
int shift = (int)key[keyIndex] - 65;
result[i] = (byte)(((int)plaintext[i] + shift) % 256);
keyIndex++;
}
return result;
}
但是,解密函数即使以几乎相同的方式写入,也会导致错误。 “试图除以零。”
解密功能的代码:
public static Byte[] decryptByteVigenere(Byte[] ciphertext, string key)
{
Byte[] result = new Byte[ciphertext.Length];
key = key.Trim().ToUpper();
int keyIndex = 0;
int keylength = key.Length;
for (int i = 0; i < ciphertext.Length; i++)
{
keyIndex = keyIndex % keylength;
int shift = (int)key[keyIndex] - 65;
result[i]= (byte)(((int)ciphertext[i] + 256 - shift) % 256);
keyIndex++;
}
return result;
}
该行的错误点 keyIndex = keyIndex%keylength; 但令我感到奇怪的是,代码在第一个函数中几乎相同,并且似乎没有造成任何麻烦。我正在接收到的fild上测试它,它正确到达而没有加密。有人可以帮我吗?
编辑: 使用解密函数代码的方法/线程:
public void fileListenThread()
{
try
{
fileServer.Start();
String receivedFileName = "test.dat";
String key = (textKlucz.Text).ToUpper();
while (true)
{
fileClient = fileServer.AcceptTcpClient();
NetworkStream streamFileServer = fileClient.GetStream();
int thisRead = 0;
int blockSize = 1024;
Byte[] dataByte = new Byte[blockSize];
Byte[] dataByteDecrypted = new Byte[blockSize];
FileStream fileStream = new FileStream(receivedFileName, FileMode.Create);
while (true)
{
thisRead = streamFileServer.Read(dataByte, 0, blockSize);
dataByteDecrypted = Program.decryptByteVigenere(dataByte, key);
fileStream.Write(dataByteDecrypted, 0, thisRead);
if (thisRead == 0)
break;
}
fileStream.Close();
}
}
catch (SocketException e)
{
MessageBox.Show("SocketException: " + e, "Wystąpił wyjątek", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
答案 0 :(得分:0)
好的问题确实是发送/接收方法,而不是函数本身。我仍然不知道导致问题的原因,但重写功能有帮助。感谢您的投入!
我将它留在这里以防万一将来需要这样的功能......即使这是相当微不足道的事情。
干杯。