Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
tpruvot
GitHub Repository: tpruvot/cpuminer-multi
Path: blob/linux/scryptjane/scrypt-conf.h
1201 views
1
/*
2
pick the best algo at runtime or compile time?
3
----------------------------------------------
4
SCRYPT_CHOOSE_COMPILETIME (gcc only!)
5
SCRYPT_CHOOSE_RUNTIME
6
*/
7
#define SCRYPT_CHOOSE_RUNTIME
8
9
10
/*
11
hash function to use
12
-------------------------------
13
SCRYPT_BLAKE256
14
SCRYPT_BLAKE512
15
SCRYPT_SHA256
16
SCRYPT_SHA512
17
SCRYPT_SKEIN512
18
*/
19
//#define SCRYPT_SHA256
20
21
22
/*
23
block mixer to use
24
-----------------------------
25
SCRYPT_CHACHA
26
SCRYPT_SALSA
27
*/
28
//#define SCRYPT_SALSA
29
30