欢迎来到入门教程网!

C语言

当前位置:主页 > 软件编程 > C语言 >

C++获取文件哈希值(hash)和获取torrent(bt种子)磁力链接哈希值

来源:本站原创|时间:2020-01-10|栏目:C语言|点击:

复制代码 代码如下:

// CHash.h : header file


#pragma once
#include "sha1.h"

#define        SIZE_OF_BUFFER         16000

class CHash
{
// Construction
public:
    CString SHA1Hash(CString strHashFile);
};

复制代码 代码如下:

// CHash.cpp : implementation file
//
#include "stdafx.h"
#include "CHash.h"
#include <atlconv.h>

CString CHash::SHA1Hash(CString strHashFile)
{
    USES_CONVERSION;
    FILE *fileToHash = NULL;
    unsigned long lenRead = 0;
    unsigned char fileBuf[SIZE_OF_BUFFER];
    sha1_ctx m_sha1;
    unsigned char* tempOut = new unsigned char[256];
    CString    tempHash;
    CString outHash;

    sha1_begin(&m_sha1);

    fileToHash = fopen(T2A(strHashFile), "rb");
    do
    {
        lenRead = fread(fileBuf, 1, SIZE_OF_BUFFER, fileToHash);
        if(lenRead != 0)
        {
            sha1_hash(fileBuf, lenRead, &m_sha1);
        }
    } while (lenRead == SIZE_OF_BUFFER);

    fclose(fileToHash); fileToHash = NULL;

    sha1_end(tempOut, &m_sha1);

    for (int i = 0 ; i < 20 ; i++)
    {
        char tmp[3];
        _itoa(tempOut[i], tmp, 16);
        if (strlen(tmp) == 1)
        {
            tmp[1] = tmp[0];
            tmp[0] = '0';
            tmp[2] = '\0';
        }
        tempHash += tmp;   

    }

    delete[] tempOut;

    outHash = tempHash;

    return outHash;
}

上一篇:c++实现MD5算法实现代码

栏    目:C语言

下一篇:c语言socket多线程编程限制客户端连接数

本文标题:C++获取文件哈希值(hash)和获取torrent(bt种子)磁力链接哈希值

本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/3878.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有