我被困在cs50上的pset2中,老实说,我认为我缺少很多东西,我不知道我是否可以继续学习而又无法真正理解一些基础知识。 我试图做到这一点,然后我想停下来,仍然学习一些有关c的基础知识。 我需要帮助以及更多的评论,我将不胜感激。
所以基本上这是我的代码
#define _XOPEN_SOURCE
#include <cs50.h>
#include <stdio.h>
#include <crypt.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
bool crack(string given_hash);
int main(int argc, string argv[])
{
if (argc != 2)
{
printf("Usage ./crack hash\n");
return 1;
}
if (!crack(argv[1]))
return 1;
}
bool crack(string given_hash)
{
string Alphabet = "abcdefghijklmnopqrstuvwxyABCDEFGHIJKLMNOPQRSTUVWXYZ";
char key[6];
char salt[3];
salt[2] = '\0';
for (int x = 0; x < 2; x++)
{
salt[x] = given_hash[x];
}
// single-letter keys.
for (int i = 0; i < 52; i++)
{
key[0] = Alphabet[i], key[1] = '\0';
string new_hash = crypt(key,salt);
if (strcmp(new_hash, given_hash) == 0)
{
printf("you got the key: %s\n",key);
return 0;
}
}
// for 2-letter keys.
for (int i = 0; i < 52; i++)
{
key[0] = Alphabet[i], key[2] = '\0';
for (int j = 0; j < 52; j++)
{
key[1] = Alphabet[j];
}
string new_hash = crypt(key,salt);
if (strcmp(new_hash, given_hash) == 0)
{
printf("you got the key: %s\n",key);
return 0;
}
}
// for 3-letter keys.
for (int i = 0; i < 52; i++)
{
key[0] = Alphabet[i], key[3] = '\0';
for (int j = 0; j < 52; j++)
{
key[1] = Alphabet[j];
for (int k = 0; k < 52; k++)
{
key[2] = Alphabet[k];
}
}
string new_hash = crypt(key,salt);
if (strcmp(new_hash, given_hash) == 0)
{
printf("you got the key: %s\n",key);
return 0;
}
}
// for 4-letter keys.
for (int i = 0; i < 52; i++)
{
key[0] = Alphabet[i], key[4] = '\0';
for (int j = 0; j < 52; j++)
{
key[1] = Alphabet[j];
for (int k = 0; k < 52; k++)
{
key[2] = Alphabet[k];
for( int l = 0; l < 52; l++)
{
key[3] = Alphabet[l];
}
}
}
string new_hash = crypt(key,salt);
if (strcmp(new_hash, given_hash) == 0)
{
printf("you got the key: %s\n",key);
return 0;
}
}
// for 5-letter keys.
for (int i = 0; i < 52; i++)
{
key[0] = Alphabet[i], key[5] = '\0';
for (int j = 0; j < 52; j++)
{
key[1] = Alphabet[j];
for (int k = 0; k < 52; k++)
{
key[2] = Alphabet[k];
for(int l = 0; l < 52; l++)
{
key[3] = Alphabet[l];
for(int m = 0; m < 52; m++)
{
key[4] = Alphabet[m];
}
}
}
}
string new_hash = crypt(key,salt);
if (strcmp(new_hash, given_hash) == 0)
{
printf("you got the key: %s\n",key);
return 0;
}
}
}
现在我不知道我在做什么错,我知道此错误是由于在非void函数中没有返回值引起的,但是我该如何解决呢?
答案 0 :(得分:1)
您的main
和crack
函数都有一条代码路径,该代码路径可能会到达函数的结尾,并且不会返回值。
main
-如果crack返回1
或true
,则代码将到达main的末尾而不会返回int值。但是,main
有一个例外,即如果您未明确返回,则它将return 0
。因此,虽然没有问题,但我仍将确保所有代码路径都返回。
crack
-如果您的测试均未找到匹配的密码哈希,则该函数将到达末尾而不返回。基于函数逻辑,它永远不会发生,但是编译器并不知道。
要解决此问题,您需要确保所有代码路径都返回一个值。
答案 1 :(得分:1)
由于crack()
函数应该返回bool
并且crack()
函数的末尾没有return语句,因此错误控制可能会到达非void函数的末尾。在编译代码时,编译器发现crack()
函数的所有return语句仅在满足某些条件的情况下才能
bool crack(string given_hash)
{
....
....
if (strcmp(new_hash, given_hash) == 0)
{
printf("you got the key: %s\n",key);
return 0;
}
....
....
if (strcmp(new_hash, given_hash) == 0)
{
printf("you got the key: %s\n",key);
return 0;
}
....
....
if (strcmp(new_hash, given_hash) == 0)
{
printf("you got the key: %s\n",key);
return 0;
}
....
....
if (strcmp(new_hash, given_hash) == 0)
{
printf("you got the key: %s\n",key);
return 0;
}
....
....
if (strcmp(new_hash, given_hash) == 0)
{
printf("you got the key: %s\n",key);
return 0;
}
}
//<================ Return statement missing
}
,如果不满足任何条件,则控制可能会到达功能结束。您应该在crack()
函数的末尾添加return语句,并返回一个指示失败的值。由于在所有情况下您都返回0
(似乎是成功的案例),因此可以在最后返回1
来指示失败:
....
....
return 1;
}
请注意,main()
函数有一个例外,如果控制到达main()
函数的末尾而没有遇到return语句,则会执行return 0;
。