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