- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在为 DES 实现代码。它接收 8 个字节的数据并返回 8 个字节的编码数据。当我尝试发送超过 10 MB 的文件时出现问题,堆栈内存超出范围。我尽可能地释放分配的内存,但错误仍然存在。这是我的代码。
// 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){}
};
如果有人告诉我如何有效处理给我的内存,我将不胜感激。
最佳答案
我认为这是你的内存泄漏的地方:
Byte *newright=new Byte[4];
newright=function_des(right,key48[i]);
/*...*/
delete[] newright;
您分配内存,将其分配给一个指针,然后将另一个值分配给指针,因此 delete[] 释放新引用的内存,而先前分配的内存将丢失。
也在这里:
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 ... */
而且我不确定您是否需要动态分配这些临时数组,但是您转储了很多代码所以我不确定(也许您递归调用您的方法,如果您在堆栈上分配数组,您将遇到堆栈溢出).
关于c++ - 内存超出范围 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15783926/
我不能解决这个问题。和标题说的差不多…… 如果其他两个范围/列中有“否”,我如何获得范围或列的平均值? 换句话说,我想计算 A 列的平均值,并且我有两列询问是/否问题(B 列和 C 列)。我只希望 B
我知道 python 2to3 将所有 xrange 更改为 range 我没有发现任何问题。我的问题是关于它如何将 range(...) 更改为 list(range(...)) :它是愚蠢的,只是
我有一个 Primefaces JSF 项目,并且我的 Bean 注释有以下内容: @Named("reportTabBean") @SessionScoped public class Report
在 rails3 中,我在模型中制作了相同的范围。例如 class Common ?" , at) } end 我想将公共(public)范围拆分为 lib 中的模块。所以我试试这个。 module
我需要在另一个 View 范围 bean 中使用保存在 View 范围 bean 中的一些数据。 @ManagedBean @ViewScoped public class Attivita impl
为什么下面的代码输出4?谁能给我推荐一篇好文章来深入学习 javascript 范围。 这段代码返回4,但我不明白为什么? (function f(){ return f(); functio
我有一个与此结构类似的脚本 $(function(){ var someVariable; function doSomething(){ //here } $('#som
我刚刚开始学习 Jquery,但这些示例对我帮助不大...... 现在,以下代码发生的情况是,我有 4 个表单,我使用每个表单的链接在它们之间进行切换。但我不知道如何在第一个函数中获取变量“postO
为什么当我这样做时: function Dog(){ this.firstName = 'scrappy'; } Dog.firstName 未定义? 但是我可以这样做: Dog.firstNa
我想打印文本文件 text.txt 的选定部分,其中包含: tickme 1.1(no.3) lesson1-bases lesson2-advancedfurther para:using the
我正在编写一些 JavaScript 代码。我对这个关键字有点困惑。如何在 dataReceivedHandler 函数中访问 logger 变量? MyClass: { logger: nu
我有这个代码: Public Sub test() Dim Tgt As Range Set Tgt = Range("A1") End Sub 我想更改当前为“A1”的 Tgt 的引
我正忙于此工作,以为我会把它放在我们那里。 该数字必须是最多3个单位和最多5个小数位的数字,等等。 有效的 999.99999 99.9 9 0.99999 0 无效的 -0.1 999.123456
覆盖代码时: @Override public void open(ExecutionContext executionContext) { super.open(executio
我想使用 preg_match 来匹配数字 1 - 21。我如何使用 preg_match 来做到这一点?如果数字大于 21,我不想匹配任何东西。 example preg_match('([0-9]
根据docs range函数有四种形式: (range) 0 - 无穷大 (range end) 0 - 结束 (range start end)开始 - 结束 (range start end st
我知道有一个UISlider,但是有人已经制作了RangeSlider(用两个拇指吗?)或者知道如何扩展 uislider? 最佳答案 我认为你不能直接扩展 UISlider,你可能需要扩展 UICo
我正在尝试将范围转换为列表。 nums = [] for x in range (9000, 9004): nums.append(x) print nums 输出 [9000] [9
请注意:此问题是由于在运行我的修饰方法时使用了GraphQL解析器。这意味着this的范围为undefined。但是,该问题的基础知识对于装饰者遇到问题的任何人都是有用的。 这是我想使用的基本装饰器(
我正在尝试创建一个工具来从网页上抓取信息(是的,我有权限)。 到目前为止,我一直在使用 Node.js 结合 requests 和 Cheerio 来拉取页面,然后根据 CSS 选择器查找信息。我已经
我是一名优秀的程序员,十分优秀!