Init net subsystem
[novacoin.git] / src / crypto / scrypt / asm / asm-wrapper.cpp
1 #include "scrypt.h"
2
3 extern "C" void scrypt_core(uint32_t *X, uint32_t *V);
4
5 /* cpu and memory intensive function to transform a 80 byte buffer into a 32 byte output
6    scratchpad size needs to be at least 63 + (128 * r * p) + (256 * r + 64) + (128 * r * N) bytes
7    r = 1, p = 1, N = 1024
8  */
9 uint256 scrypt_blockhash(const uint8_t* input)
10 {
11     uint8_t scratchpad[SCRYPT_BUFFER_SIZE];
12     uint32_t X[32];
13     uint256 result = 0;
14
15     uint32_t *V = (uint32_t *)(((uintptr_t)(scratchpad) + 63) & ~ (uintptr_t)(63));
16
17     PKCS5_PBKDF2_HMAC((const char*)input, 80, input, 80, 1, EVP_sha256(), 128, (unsigned char *)X);
18     scrypt_core(X, V);
19     PKCS5_PBKDF2_HMAC((const char*)input, 80, (const unsigned char*)X, 128, 1, EVP_sha256(), 32, (unsigned char*)&result);
20
21     return result;
22 }