mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 17:37:25 +00:00
28 lines
577 B
C
28 lines
577 B
C
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
#include "Lyra2-zz.h"
|
|
|
|
#include <sha3/sph_blake.h>
|
|
|
|
#define _ALIGN(x) __attribute__ ((aligned(x)))
|
|
|
|
extern uint64_t lyra2z_height;
|
|
|
|
void lyra2zz_hash(const char* input, char* output, uint32_t len)
|
|
{
|
|
uint32_t _ALIGN(64) hashB[8], hash[8];
|
|
sph_blake256_context ctx_blake;
|
|
|
|
sph_blake256_set_rounds(14);
|
|
|
|
sph_blake256_init(&ctx_blake);
|
|
sph_blake256(&ctx_blake, input, 112);
|
|
sph_blake256_close(&ctx_blake, hashB);
|
|
|
|
LYRA2ZZ(hash, 32, hashB, 32, hashB, 32, 8, 8, 8);
|
|
|
|
memcpy(output, hash, 32);
|
|
}
|