Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of 72DFBF5B A0DF5BE9

72DFBF5B A0DF5BE9

72DFBF5B A0DF5BE9 has asked 0 questions and find answers to 18 problems.

Stats

353
EtPoint
100
Vote count
0
questions
18
answers

About

Info:

    #include <crc64.h>
    #include <iostream>
    #define MyName "******* *****"

    void main()
    {
        char plaintext[16], hash[16];
        plaintext = MyName;
        hash = crc64genHash(plaintext);
        for (int i=0;i<16;i++)
             (i == 7) ? printf("%c ", hash[i]) : printf("%c", hash[i]); 
    }

Output:

72DFBF5B A0DF5BE9