mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-27 04:07:12 +09:00
21 lines
354 B
C
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
|