Files
libsodium/src/libsodium/include/sodium/crypto_hash.h
T
2013-04-21 17:32:09 -07:00

21 lines
354 B
C

#ifndef crypto_hash_H
#define crypto_hash_H
#include "crypto_hash_sha512.h"
#define crypto_hash_BYTES crypto_hash_sha512_BYTES
#define crypto_hash_PRIMITIVE "sha512"
#ifdef __cplusplus
extern "C" {
#endif
int crypto_hash(unsigned char *out, const unsigned char *in,
unsigned long long inlen);
#ifdef __cplusplus
}
#endif
#endif