14 lines
423 B
C
14 lines
423 B
C
#include "crypto_hash_sha512.h"
|
|
#include "hram.h"
|
|
|
|
void get_hram(unsigned char *hram, const unsigned char *sm, const unsigned char *pk, unsigned char *playground, unsigned long long smlen)
|
|
{
|
|
unsigned long long i;
|
|
|
|
for (i = 0;i < 32;++i) playground[i] = sm[i];
|
|
for (i = 32;i < 64;++i) playground[i] = pk[i-32];
|
|
for (i = 64;i < smlen;++i) playground[i] = sm[i];
|
|
|
|
crypto_hash_sha512(hram,playground,smlen);
|
|
}
|