从文件中读取单词并在C中逐行加密每个单词

时间:2017-12-23 03:16:22

标签: c encryption sha512

我是C编程语言的新手。我想寻求加密文本文件中的单词并显示它的指导。这是我到目前为止所做的。我想事先为格式化道歉,因为我对堆栈溢出很新。

File-reader1.c是我打算用来从文本文件中读取的程序。

文件-reader1.c

#include <stdio.h>
#include <string.h>

int main()
{

    FILE *ptr_file;  //declaring a file
    char buf[1000];
    char * hash_type_1 = "$1$";  // md5 hash
    char * hash_type_2 = "$6$";  // sha512 hash
    char * salt_1 ="$";     //a simple salt
    char * result;
    char encyption_scheme[20];

    ptr_file = fopen("small_wordlist","r"); //opening the file
    if (!ptr_file)
        return 1;

    while (fgets(buf,1000, ptr_file) != NULL)
        printf("%s",buf);

    // prepare the first call using md5

    strcpy(encyption_scheme,hash_type_1);
    strcat(encyption_scheme,salt_1);
    result = crypt(buf,encyption_scheme);
    printf("MD5 Result\n");
    printf("%s\n",result);

    // prepare the second call using sha-512 
    strcpy(encyption_scheme,hash_type_2);
    strcat(encyption_scheme,salt_1);
    result = crypt(buf,encyption_scheme);
    printf("SHA-512\n");
    printf("%s\n",result);

    fclose(ptr_file); //closing the file
    return 0;
}

Small_Wordlist是一个包含我要加密的单词列表的文件。

Small_wordlist

Andy 

Noel

Liam

Paul

我的输出如下:

Noel

Liam

Andy

Paul

MD5 Result

$1$$.NeC/EbTUibao2by.HNV01

SHA-512

$6$$qQs5aHFZX/2Iaz4Y1RIihRn./AszpUZnDfld0h5mrWEtAqRJPanIO3cpT3TOOKuFS5hpmLrKAb5MY2mGV2ato1

如你所见。 SHA 512和MD5只进行了一次哈希实例。但是,我希望所有四个词都可以用两种方案进行调整。你能帮助我完成我需要完成的步骤吗?提前谢谢你:)

2 个答案:

答案 0 :(得分:4)

...笑着

如果您在

之后添加{会怎样?
while (fgets(buf,1000, ptr_file)!=NULL)

和之前的}

fclose(ptr_file);//closing the file

您只是阅读并输出buf,只加密单词列表:)

中的最后一个单词

如果不清楚,您似乎打算执行以下操作:

while (fgets(buf,1000, ptr_file)!=NULL)
{
    printf("%s",buf);

    /* prepare the first call using md5 */
    strcpy(encyption_scheme,hash_type_1);
    strcat(encyption_scheme,salt_1);
    result = crypt(buf,encyption_scheme);
    printf("MD5 Result\n");
    printf("%s\n",result);

    /* prepare the second call using sha-512 */ 
    strcpy(encyption_scheme,hash_type_2);
    strcat(encyption_scheme,salt_1);
    result = crypt(buf,encyption_scheme);
    printf("SHA-512\n");
    printf("%s\n",result);
}

为避免在加密中包含尾随'\n'(由fgets读取并包含),我建议您在使用类似以下内容调用crypt之前将其删除:

#define MAXC 1000
...
    while (fgets(buf,MAXC, ptr_file)!=NULL)
    {
        size_t len = strlen (buf);          /* get length */
        if (len && buf[len - 1] == '\n')    /* check last char '\n' */
            buf[--len] = 0;                 /* overwrite with nul-char */
        else if (len == MAXC - 1) {         /* handle line too long */
            fprintf (stderr, "error: line too long.\n");
            /* handle error as desired */
        }
        printf ("%s\n",buf);

        /* prepare the first call using md5 */
        strcpy(encyption_scheme,hash_type_1);
        strcat(encyption_scheme,salt_1);
        result = crypt(buf,encyption_scheme);
        printf("MD5 Result\n");
        printf("%s\n",result);

        /* prepare the second call using sha-512 */ 
        strcpy(encyption_scheme,hash_type_2);
        strcat(encyption_scheme,salt_1);
        result = crypt(buf,encyption_scheme);
        printf("SHA-512\n");
        printf("%s\n",result);
    }

注意:不要在代码中使用幻数,例如1000分散在整个代码中,相反,如果您需要常量,{ {1}}一个(或多个))

仔细看看,如果您有其他问题,请告诉我。

答案 1 :(得分:1)

在文件的顶部,您已将small_wordlist读入buf。然后拨打crypt,传递buf作为数据。这就是加密只发生一次的原因:buf被视为一个大字符串,所有单词都被加密在一起。

为了改变这种行为,你需要将buf分成其复合词。一种简单的方法是读取缓冲区,用空终止符替换所有空格字符,并保存每个单词开头的索引。然后针对遇到的每个单词拨打crypt一次,传递buf + i,其中i是单词开头的索引。

当然,有其他方法可以将buf分开,但重要的是您需要多次调用crypt才能执行多次加密。