CUDA SHA-计算失败

时间:2014-06-10 10:03:22

标签: c++ c cuda

我想在CUDA中编写一个SHA1函数,但是当我执行该函数时,我得到了错误的结果。当我在CPU上运行相同的功能时,我得到了正确的结果。我的SHA-Function看起来像:

__device__ void  SHA1_CUDA(uint8_t input_string[], int slen, uint32_t Hash_ptr[])
{
    printf("Input string is %s, input len is %d\n", input_string, slen);
    uint32_t K[80];
    uint32_t A,B,C,D,E,TEMP;
    int r,k,ln,t,l,i,j;

    Hash_ptr[0]=0x67452301;
    Hash_ptr[1]=0xefcdab89;
    Hash_ptr[2]=0x98badcfe;
    Hash_ptr[3]=0x10325476;
    Hash_ptr[4]=0xc3d2e1f0;

    ln=slen;
    r = (int)((ln+1)/64);

    if (((ln+1) % 64) > 56)
        {
        r=r+1;
        }

    // initialize Constants

    for(t=0; t<80; t++)
        {
            if (t<20)
                {
                    K[t] = 0x5a827999;
                }

            if ((t>19)&(t<40))
                {
                    K[t] = 0x6ED9EBA1;
                }
            if ((t>39)&(t<60))
                {
                    K[t] = 0x8F1BBCDC;
                }
            if (t>59)
                {
                    K[t] = 0xca62c1d6;
                }
        }

    for(l=0; l <= r; l++)
    {
        uint32_t W[80]={0};
        //Initialize Text
        for (i=0; i<16; i++)
            {
            for(j=0; j<4; j++)
                {
                    if (4*i+j <= ln)
                    {
                        k = input_string[64*l+4*i+j];
                    }
                    else
                    {
                        k =0;
                    }

                    if (k<0)
                    {
                        k = k +256;
                    }

                    if (4*i+j == ln)
                        {
                            k = 0x80;
                        }

    //              W[i]= W[i] + k*(uint32_t)pow(256,(double)3-j);
                    W[i]= W[i] + k*expo_d[3-j];
                }
            }
        if ((W[14]==0)&(W[15]==0))
        {
            W[15]=8*slen;
        }

    // Hash Cycle


        for (t = 16; t <80; t++)
            {
                W[t] = Rol(W[t-3]^W[t-8]^W[t-14]^W[t-16],1);
            }

        A = Hash_ptr[0];
        B = Hash_ptr[1];
        C = Hash_ptr[2];
        D = Hash_ptr[3];
        E = Hash_ptr[4];


        for(t = 0; t < 80; t++)
        {
            TEMP = (Rol(A,5) + f(B,C,D,t) + E + W[t] + K[t]);
            E = D;
            D = C;
            C = Rol(B,30);
            B = A;
            A = TEMP;
        }

        Hash_ptr[0] = Hash_ptr[0] + A;
        Hash_ptr[1] = Hash_ptr[1] + B;
        Hash_ptr[2] = Hash_ptr[2] + C;
        Hash_ptr[3] = Hash_ptr[3] + D;
        Hash_ptr[4] = Hash_ptr[4] + E;

        ln = ln - 64;
    }

}

(主机功能类似,仅与__host__代替__device__)。 我的内核函数是

__global__ void test_sha(uint8_t pw[], int* pw_len, uint32_t H[])
{
    SHA1_CUDA(pw, *pw_len, H);
}

我称之为

printf("\nTesting SHA\n");
    uint32_t * H_h = (uint32_t*)malloc(sizeof(uint32_t)*5);
    memset(H_h, 0, sizeof(uint32_t) * 5);
    uint32_t * H_d;
    cudaMalloc(&H_d, sizeof(uint32_t)*5);
    cudaMemcpy(H_d, H_h, 5*sizeof(uint32_t), cudaMemcpyHostToDevice);
    test_sha<<<1, 1>>>(Pass_d, Pass_len_d, H_d);
    cudaMemcpy(H_h, H_d, 5*sizeof(uint32_t), cudaMemcpyDeviceToHost);
    cudaFree(H_d);
    for(int i = 0; i < 5; i++)
        printf("%x ", H_h[i]);
    printf("\n\n");
    printf("Comparing to CPU:  \n");
    SHA1_CUDA_h(Pass_h, Pass_len, H_h);
    for(int i = 0; i < 5; i++)
        printf("%x ", H_h[i]);
    printf("\n\n");
    free(H_h);

所以,SHA函数中的printf - 函数告诉我所有内容都已正确传输,但是我得到了错误的结果...
我的错误在哪里?

1 个答案:

答案 0 :(得分:1)

问题解决了,我在函数中使用的ROL函数Rol_CUDA返回了错误值,因此除了我以外没有人可以解决问题。
对于想要使用此功能的每个人:在pastebin的第51行,应该有32-y,而不是-y。一切都有效。