It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
#include "stdafx.h"
#include
#include
#include
#include
#include
#include "sha3/sph_blake.h"
#include "sha3/sph_bmw.h"
#include "sha3/sph_groestl.h"
#include "sha3/sph_jh.h"
#include "sha3/sph_keccak.h"
#include "sha3/sph_skein.h"
#include "sha3/sph_luffa.h"
#include "sha3/sph_cubehash.h"
#include "sha3/sph_shavite.h"
#include "sha3/sph_simd.h"
#include "sha3/sph_echo.h"
#include "sha3/sph_hamsi.h"
#include "sha3/sph_fugue.h"
#include "sha3/sph_shabal.h"
#include "sha3/sph_whirlpool.h"
sph_blake512_context ctx_blake;
sph_bmw512_context ctx_bmw;
sph_groestl512_context ctx_groestl;
sph_jh512_context ctx_jh;
sph_keccak512_context ctx_keccak;
sph_skein512_context ctx_skein;
sph_luffa512_context ctx_luffa;
sph_cubehash512_context ctx_cubehash;
sph_shavite512_context ctx_shavite;
sph_simd512_context ctx_simd;
sph_echo512_context ctx_echo;
sph_hamsi512_context ctx_hamsi;
sph_fugue512_context ctx_fugue;
sph_shabal512_context ctx_shabal;
sph_whirlpool_context ctx_whirlpool;
#define TEST_PRE(na) printf("%s: ", na); \
unsigned char hash[256]; \
for(int i=0; i<64; i++) hash[i] = i; \
int t = clock(); \
for(int i=0; i<1000000; i++) \
{
#define TEST_POST() } \
printf ("\t\t%g seconds\n", ((float)(clock() - t)) / CLOCKS_PER_SEC); \
void main()
{
{//blake512
TEST_PRE("blake512");
sph_blake512_init(&ctx_jh);
sph_blake512(&ctx_jh, hash, 64);
sph_blake512_close(&ctx_jh, hash);
TEST_POST();
}
{//bmw512
TEST_PRE("bmw512");
sph_bmw512_init(&ctx_jh);
sph_bmw512(&ctx_jh, hash, 64);
sph_bmw512_close(&ctx_jh, hash);
TEST_POST();
}
{//groestl512
TEST_PRE("groestl512");
sph_groestl512_init(&ctx_jh);
sph_groestl512(&ctx_jh, hash, 64);
sph_groestl512_close(&ctx_jh, hash);
TEST_POST();
}
{//skein512
TEST_PRE("skein512");
sph_skein512_init(&ctx_jh);
sph_skein512(&ctx_jh, hash, 64);
sph_skein512_close(&ctx_jh, hash);
TEST_POST();
}
{//jh512
TEST_PRE("jh512");
sph_jh512_init(&ctx_jh);
sph_jh512(&ctx_jh, hash, 64);
sph_jh512_close(&ctx_jh, hash);
TEST_POST();
}
{//keccak512
TEST_PRE("keccak512");
sph_keccak512_init(&ctx_jh);
sph_keccak512(&ctx_jh, hash, 64);
sph_keccak512_close(&ctx_jh, hash);
TEST_POST();
}
{//luffa512
TEST_PRE("luffa512");
sph_luffa512_init(&ctx_jh);
sph_luffa512(&ctx_jh, hash, 64);
sph_luffa512_close(&ctx_jh, hash);
TEST_POST();
}
{//cubehash512
TEST_PRE("cubehash512");
sph_cubehash512_init(&ctx_jh);
sph_cubehash512(&ctx_jh, hash, 64);
sph_cubehash512_close(&ctx_jh, hash);
TEST_POST();
}
{//shavite512
TEST_PRE("shavite512");
sph_shavite512_init(&ctx_jh);
sph_shavite512(&ctx_jh, hash, 64);
sph_shavite512_close(&ctx_jh, hash);
TEST_POST();
}
{//simd512
TEST_PRE("simd512");
sph_simd512_init(&ctx_jh);
sph_simd512(&ctx_jh, hash, 64);
sph_simd512_close(&ctx_jh, hash);
TEST_POST();
}
{//echo512
TEST_PRE("echo512");
sph_echo512_init(&ctx_jh);
sph_echo512(&ctx_jh, hash, 64);
sph_echo512_close(&ctx_jh, hash);
TEST_POST();
}
{//hamsi512
TEST_PRE("hamsi512");
sph_hamsi512_init(&ctx_jh);
sph_hamsi512(&ctx_jh, hash, 64);
sph_hamsi512_close(&ctx_jh, hash);
TEST_POST();
}
{//fugue512
TEST_PRE("fugue512");
sph_fugue512_init(&ctx_jh);
sph_fugue512(&ctx_jh, hash, 64);
sph_fugue512_close(&ctx_jh, hash);
TEST_POST();
}
{//shabal512
TEST_PRE("shabal512");
sph_shabal512_init(&ctx_jh);
sph_shabal512(&ctx_jh, hash, 64);
sph_shabal512_close(&ctx_jh, hash);
TEST_POST();
}
{//whirlpool
TEST_PRE("whirlpool");
sph_whirlpool_init(&ctx_jh);
sph_whirlpool(&ctx_jh, hash, 64);
sph_whirlpool_close(&ctx_jh, hash);
TEST_POST();
}
}