static int crypt_all(int *pcount, struct db_salt *salt)
{
	int count = *pcount;

	sha256_crypt_gpu(inbuffer, outbuffer, &host_salt, count);
	return count;
}
static void crypt_all(int count)
{
	sha256_crypt_gpu(inbuffer, outbuffer, &host_salt);
}