11 lines
131 B
C++
11 lines
131 B
C++
#ifndef __SHA512_H__
|
|
#define __SHA512_H__
|
|
|
|
#include<string>
|
|
using namespace std;
|
|
|
|
string hash_sha512_cpp(string msg_arr);
|
|
|
|
|
|
#endif
|