我对C没有任何经验(虽然我经常使用C#)但我希望编译一些C代码:
http://practicalcryptography.com/cryptanalysis/stochastic-searching/cryptanalysis-bifid-cipher/
当我使用VS2015中的Developer Command Prompt使用cl.exe编译它时,我遇到了错误:
c:\simple>cl bifidcrack.c
Microsoft (R) C/C++ Optimizing Compiler Version 19.00.23026 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
bifidcrack.c
bifidcrack.c(113): error C2113: '-': pointer can only be subtracted from another
pointer
bifidcrack.c(114): error C2113: '-': pointer can only be subtracted from another
pointer
c:\simple>
为什么这不能编译?据说其他人(在页面评论中)没有任何问题地编译它。
C:\ simple包含:
C:\simple>dir
Volume in drive C is OS
Volume Serial Number is AA86-3F24
Directory of C:\simple
22/10/2015 02:50 <DIR> .
22/10/2015 02:50 <DIR> ..
12/10/2015 12:06 4,491 bifidcrack.c
12/10/2015 12:06 7,301,392 qgr.h
12/10/2015 12:06 574 scoreText.c
12/10/2015 12:06 44 scoreText.h
4 File(s) 7,306,501 bytes
2 Dir(s) 14,560,649,216 bytes free
C:\simple>
根据要求,以下是有问题的行:
char *bifidDecipher(char *key, int period, char *text, char *result, int len){
int i, j;
char a,b; /* the digram we are looking at */
int a_ind,b_ind;
int a_row,b_row;
int a_col,b_col;
for (i = 0; i < len; i += period){
if (i + period > len){
period = len - i;
}
for (j = 0; j < period; j ++){
a = text[i+(j/2)];
b = text[i+((period+j)/2)];
/*if (index(key,a) == NULL || index(key,b) == NULL) break;*/
113 a_ind = (int)(index(key,a) - key);
114 b_ind = (int)(index(key,b) - key);
a_row = a_ind / 5;
b_row = b_ind / 5;
a_col = a_ind % 5;
b_col = b_ind % 5;
if (j % 2 == 0){
result[i+j] = key[5*a_row + b_col];
} else {
result[i+j] = key[5*a_col + b_row];
}
}
}
result[i] = '\0';
return result;
}
答案 0 :(得分:0)
错误是在bifidcrack.c的第113行和第114行说明了一个指针用于从非指针元素中减去。在没有看到实际代码的情况下,由于页面不可用,我猜想有一个不正确的解引用指针。
类似于这种情况的东西
int * pointer_int = 5;
int non_pointer = 4;
这就是目前的样子
int new_int = non_pointer - pointer_int;
虽然看起来应该是这样的
int new_int = non_pointer - (int*)pointer_int;
您必须打开文件并转到这些行以查看有关更改它们的信息。
答案 1 :(得分:0)
您引用的代码已贬值,并且如果不从索引(贬值的POSIX)更改为strchr(当前)并进行适当的转换,将无法编译。
示例:
// https://www.cplusplus.com/reference/cstring/strchr/
a_ind = (int)(strchr(key, (int)a) - (const char *)key );
b_ind = (int)(strchr(key, (int)b) - (const char *)key );
编译:{{1}}