mirror of
https://github.com/JayDDee/cpuminer-opt.git
synced 2025-09-17 23:44:27 +00:00
29 lines
1.1 KiB
C
29 lines
1.1 KiB
C
typedef struct scrypt_test_setting_t {
|
|
const char *pw, *salt;
|
|
uint8_t Nfactor, rfactor, pfactor;
|
|
} scrypt_test_setting;
|
|
|
|
static const scrypt_test_setting post_settings[] = {
|
|
{"", "", 3, 0, 0},
|
|
{"password", "NaCl", 9, 3, 4},
|
|
{0, 0, 0, 0, 0}
|
|
};
|
|
|
|
#if defined(SCRYPT_SKEIN512)
|
|
#if defined(SCRYPT_SALSA64)
|
|
static const uint8_t post_vectors[][64] = {
|
|
{0xd2,0xad,0x32,0x05,0xee,0x80,0xe3,0x44,0x70,0xc6,0x34,0xde,0x05,0xb6,0xcf,0x60,
|
|
0x89,0x98,0x70,0xc0,0xb8,0xf5,0x54,0xf1,0xa6,0xb2,0xc8,0x76,0x34,0xec,0xc4,0x59,
|
|
0x8e,0x64,0x42,0xd0,0xa9,0xed,0xe7,0x19,0xb2,0x8a,0x11,0xc6,0xa6,0xbf,0xa7,0xa9,
|
|
0x4e,0x44,0x32,0x7e,0x12,0x91,0x9d,0xfe,0x52,0x48,0xa8,0x27,0xb3,0xfc,0xb1,0x89},
|
|
{0xd6,0x67,0xd2,0x3e,0x30,0x1e,0x9d,0xe2,0x55,0x68,0x17,0x3d,0x2b,0x75,0x5a,0xe5,
|
|
0x04,0xfb,0x3d,0x0e,0x86,0xe0,0xaa,0x1d,0xd4,0x72,0xda,0xb0,0x79,0x41,0xb7,0x99,
|
|
0x68,0xe5,0xd9,0x55,0x79,0x7d,0xc3,0xd1,0xa6,0x56,0xc1,0xbe,0x0b,0x6c,0x62,0x23,
|
|
0x66,0x67,0x91,0x47,0x99,0x13,0x6b,0xe3,0xda,0x59,0x55,0x18,0x67,0x8f,0x2e,0x3b}
|
|
};
|
|
#endif
|
|
#else
|
|
static const uint8_t post_vectors[][64] = {{0}};
|
|
#endif
|
|
|