mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-04-28 01:55:15 +00:00
10 lines
222 B
C
10 lines
222 B
C
#include <openssl/sha.h>
|
|
#include "sha512.h"
|
|
|
|
void crypto_hash_sha512 (unsigned char *out,
|
|
const unsigned char *in,
|
|
unsigned long long inlen)
|
|
{
|
|
SHA512(in, inlen, out);
|
|
}
|