mirror of
https://github.com/JayDDee/cpuminer-opt.git
synced 2025-09-17 23:44:27 +00:00
9 lines
151 B
C
9 lines
151 B
C
#include "sha256d.h"
|
|
|
|
void sha256d( void *hash, const void *data, int len )
|
|
{
|
|
sha256_full( hash, data, len );
|
|
sha256_full( hash, hash, 32 );
|
|
}
|
|
|