2012-11-13 180 views
2

我必須編寫一個Vigenere加密/解密函數,該函數在全字節上運行(通過tcp加密和發送文件,然後在另一端解密)。 我的加密功能似乎正在工作(或多或少,不能真正的測試它,沒有解密功能)。字節Vigenere密碼,解密錯誤

這是加密函數的代碼:

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

解密中「klucz」和「szyfr」的定義在哪裏?BitDefender千s字段 –

+0

已修正。我正在翻譯變量,一定是錯過了這些,對不起! – Matyy

+0

似乎不太可能會拋出一個div by zero異常,除非'key.Length == 0'。請發佈顯示問題的完整代碼。 – CodesInChaos

回答

0

好的問題的確是發送/接收方法,而不是函數本身。我仍然不知道是什麼導致了這個問題,但是重寫了這些功能。感謝您的輸入!

如果有人在將來需要這樣的功能,我會把它留在這裏......即使這是件小事。

乾杯。