2013-04-03 170 views
0

我正在實施DES的代碼。它需要8個字節的數據並返回8 Bytes的編碼數據。當我嘗試發送大小超過10 MB的文件時,會發生問題,堆棧內存超出範圍。我儘可能釋放分配的內存,但錯誤依然存在。 這是我的代碼。內存超出範圍C++

 // DES.cpp : Defines the entry point for the console application. 
// 
#include<iostream> 
#include "stdafx.h" 
#include "des.h" 
using namespace std; 

//loads of const array declarations here 
    des::des(const char Key[17]){ 
     // constructor work 
    } 

    void des::tokey_56(){ 
     //works on the keys and converts it to 56 bits. 
     tokey_48(); //called to convert to 48 bit keys. 
    } 

    void leftshift(int a[],int shift){ 
     //leftshifts a by shif number of bits 
    } 



    void des::tokey_48(){ 
     /* */ 
      //makes 16 subkeys of 48bits each. 
    } 
    //This function calculates permutation using the const arrays decalared above. 
    Byte* des::permute(Byte bytes[],const int permutatn[],int permlen,int bytelen){ 
     Byte *newbytes=new Byte[permlen/8]; 
     //init 
     for(int i=0;i<permlen/8;i++) 
      newbytes[i]=0; 
     //initclose 
     /*for(int i=0;i<bytelen;i++){ 
     printf("%d - ",bytes[i]); 
     }*/ 
     for(int i=0;i<permlen;i++){ 
      int temp=permutatn[i]; 
      int index1=(permutatn[i]-1)/8; 
      int index2=(permutatn[i]-1)%8; 
      int tempvar=bytes[index1]&masks[index2]; 
      int tempvar_1; 
      tempvar_1=(tempvar>0)?masks[i%8]:0; 
      newbytes[i/8]= newbytes[i/8] | tempvar_1; 
      /*if(i==13){ 
      printf(" %d-%d ",bytes[index1],newbytes[i/8]); 
      }*/ 
     } 

     /*for(int i=0;i<permlen/8;i++){ 
     printf("%d - ",newbytes[i]); 
     }*/ 
     return newbytes; 
    } 


    void des::create_sub_array(Byte array[], Byte subarray[],int start,int end){ 
     // creates 2 subarrays from start to end 
    } 

    void des::swap(Byte a[],Byte b[]){ 
     // Swaps array a and b 
    } 

    //This is the main DES function (Key,Right) 
    Byte* des::function_des(Byte right[],Byte k[]){ 
     Byte *right_p=new Byte[6]; 
     Byte *B=new Byte[8]; 
     right_p=permute(right,E,48,4); 
     for(int i=0;i<6;i++){ 
      right_p[i]=right_p[i]^k[i]; 
      //printf(" %d ",right_p[i]); 
     } 

     B[0]=(right_p[0]&0xFC)>>2; 
     B[1]=(((right_p[0]&0x3)<<4)|0x0F) & (((right_p[1]&0xF0)>>4)|0xF0); 
     B[2]=(((right_p[1]&0x0F)<<2)|0x03) & (((right_p[2]&0xC0)>>6)|0xFC); 
     B[3]=(right_p[2]&0x3F); 
     B[4]=(right_p[3]&0xFC)>>2; 
     B[5]=(((right_p[3]&0x3)<<4)|0x0F) & (((right_p[4]&0xF0)>>4)|0xF0); 
     B[6]=(((right_p[4]&0x0F)<<2)|0x03) & (((right_p[5]&0xC0)>>6)|0xFC); 
     B[7]= (right_p[5]&0x3F); 

     for(int i=0;i<8;i++){ 
      int row=(((B[i]&0x20)>>4)|0x01) & ((B[i]&0x01)|0x3E); 
      int column= (B[i]&0x1E)>>1; 
      //using SBoxes 
      switch(i){ 
      case 0: B[0]=S1[row][column]; 
       break; 
      case 1: B[1]=S2[row][column]; 
       break; 
      case 2: B[2]=S3[row][column]; 
       break; 
      case 3: B[3]=S4[row][column]; 
       break; 
      case 4: B[4]=S5[row][column]; 
       break; 
      case 5: B[5]=S6[row][column]; 
       break; 
      case 6: B[6]=S7[row][column]; 
       break; 
      case 7: B[7]=S8[row][column]; 
       break; 
      } 
     } 
     for(int i=0,j=0; i<4; i++,j+=2){ 
      B[i]=(B[j]<<4)|(B[j+1]); 
     } 
     B=permute(B,P,32,4); 
     delete[] right_p; 
     return B; 
    } 

    void des::XOR(Byte a[],Byte b[],int len){ 
     //XOR Function bit by bit. 
    } 

    //This Function is called from outside the class DES with a 8 byte packet 
    Byte* des::encode(Byte bytes[8]){ 
     Byte *encoded=new Byte[8]; 
     tokey_56(); 
     bytes=permute(bytes,IP,64,8); 
     Byte left[4],right[4]; 
     create_sub_array(bytes,left,0,4); 
     create_sub_array(bytes,right,4,8); 
     //printf("\n\n"); 
     for(int i=0;i<16;i++){ 
      Byte *newright=new Byte[4]; 
      newright=function_des(right,key48[i]); 
      XOR(left,newright,4); 
      swap(left,right); 
      delete[] newright; 
     } 
     swap(left,right); 
     for(int i=0;i<4;i++){ 
      encoded[i]=left[i]; 
      encoded[i+4]=right[i]; 
     } 
     encoded=permute(encoded,IPi,64,8); 

     //print final coded message 
     /*(for(int i=0;i<8;i++){ 
      printf("%2X",encoded[i]); 
     }*/ 
     return encoded; 
    } 

    Byte* des::decode(Byte bytes[8]){ 
     Byte *decoded=new Byte[8]; 
     tokey_56(); 
     bytes=permute(bytes,IP,64,8); 
     Byte left[4],right[4]; 
     create_sub_array(bytes,left,0,4); 
     create_sub_array(bytes,right,4,8); 
     //printf("\n\n"); 
     for(int i=0;i<16;i++){ 
      Byte *newright=new Byte[4]; 
      newright=function_des(right,key48[15-i]); 
      XOR(left,newright,4); 
      swap(left,right); 
      delete[] newright; 
     } 
     swap(left,right); 
     for(int i=0;i<4;i++){ 
      decoded[i]=left[i]; 
      decoded[i+4]=right[i]; 
     } 
     decoded=permute(decoded,IPi,64,8); 

     /*for(int i=0;i<8;i++){ 
      printf("%2X",decoded[i]); 
     }*/ 
     return decoded; 
    } 

DES類的頭文件在下面聲明。

#pragma once 
#include<ctype.h> 
#include<string.h> 
#include<stdio.h> 
#include<conio.h> 
#include"stdafx.h" 
using namespace std; 

typedef unsigned char Byte; 

class des 
{ 
private: 
    static const int PC_1[56]; 
    static const int PC_2[]; 
    static const int IP[]; 
    static const int E[]; 
    static const int S1[4][16]; 
    static const int S2[4][16]; 
    static const int S3[4][16]; 
    static const int S4[4][16]; 
    static const int S5[4][16]; 
    static const int S6[4][16]; 
    static const int S7[4][16]; 
    static const int S8[4][16]; 
    static const int P[]; 
    static const int IPi[]; 
    static const char binary[16][5]; 
    static const Byte masks[8]; 
    //static const Byte masks_1[8]; 
    char key[16][5]; 
    int key_56[56]; 
    //int key_48[16][48]; 
    Byte key48[16][6]; 
public: 

    char toBinary(); 
    des(const char Key[17]); 
    void tokey_56(); 
    void tokey_48(); 
    Byte* encode(Byte bytes[]); 
    Byte* des::decode(Byte bytes[8]); 
    Byte* permute(Byte byte[],const int permutatn[],int permlen,int bytelen); 
    void create_sub_array(Byte array[],Byte subarray[],int start,int end); 
    void swap(Byte a[],Byte b[]); 
    void XOR(Byte a[],Byte b[],int len); 
    Byte* function_des(Byte right[],Byte k[]); 
    ~des(void){} 
}; 

我很感激一些幫助,如果有人告訴我如何有效地處理給我的記憶。

+6

路途太多的代碼。嘗試使用調試器逐步完成它。 – StoryTeller

+2

您需要將其縮小爲一個[小型自包含可編譯示例](http://meta.stackexchange.com/questions/22754/sscce-how-to-provide-examples-for-programming-questions),它只顯示沒有任何外來廢話的具體問題。 (另外,專家提示:爲了您自己的理智以及其他人的需要,您需要對所有硬編碼的常量進行一些操作。) –

+1

我猜'麻煩來自'_tmain'的內容:您將文件內容加載到內存中。你能展示那段代碼嗎? (它不能是一個簡單的'return 0;'導致一個問題) –

回答

6

我覺得這是你的內存泄漏:

 Byte *newright=new Byte[4]; 
     newright=function_des(right,key48[i]); 
     /*...*/ 
     delete[] newright; 

你分配內存,將其分配給一個指針,然後再指定值指針,以便刪除[]的FreeS新引用的內存和之前分配的內存丟失。

另外這裏:

Byte* des::function_des(Byte right[],Byte k[]){ 
    Byte *right_p=new Byte[6]; 
    Byte *B=new Byte[8]; 
    /*...*/ 
    B=permute(B,P,32,4); 
    delete[] right_p; 
} 

如何修復 - 不覆蓋您的指針變量這樣,申報新的指針:

 Byte *newright=new Byte[4]; 
     Byte *really_newright=function_des(right,key48[i]); 
     /* use really_newright instead of newright */ 
     delete[] newright; 
     /* ... delete[] really_newright; delete it when appropriate ... */ 

而且我不知道,你需要動態分配這些臨時數組,但是你遺棄了很多代碼,所以我不確定(也許你遞歸地調用你的方法,如果你在堆棧上分配數組,你會遇到堆棧溢出)。

+0

謝謝Mladen! 我到底該如何修復它。你建議我不應該使用新的? – Sohaib

+1

@SilentPro永遠不要使用'new' ...除非必須。 –

+0

@SilentPro反而給'std :: vector '一試。 – moooeeeep