pool/stratum/algos/argon2d-dyn.h
Amir Abrams cc456814c5 Add Dynamic Argon2d algorithm to YIIMP Stratum Pool (#301)
- Use dynode instead of masternode for Dynamic
- Updates Argon2d hash library (https://github.com/P-H-C/phc-winner-argon2)
- Adds argon2d-dyn.conf sample template file
- Code contributed by @BigEvilSoloMiner from Discord.
- testing and contributions by @R3D5H1RT from Discord
- testing and support by @InsaneITGeek from Discord.
- Dynamic test stratum pool: https://testpool.dualityblocks.com
2018-09-04 10:30:06 +02:00

16 lines
No EOL
208 B
C

#ifndef ARGON2D_H
#define ARGON2D_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
void argon2d_dyn_hash(const char* input, char* output, unsigned int len);
#ifdef __cplusplus
}
#endif
#endif