c-libp2p/include/libp2p/crypto/sha512.h

12 lines
309 B
C
Raw Normal View History

2017-01-23 16:31:24 +00:00
#pragma once
/***
* hash a string using SHA512
* @param input the input string
* @param input_length the length of the input string
* @param output where to place the results
* @returns 1
*/
int libp2p_crypto_hashing_sha512(const unsigned char* input, size_t input_length, unsigned char output[128]);