4 // GCRY_MD_CRC32 - CRC32, sencillo, rápido.
5 // GCRY_MD_SHA1 - SHA1 potente y seguro.
6 #define HASH_TYPE GCRY_MD_SHA1
8 // Establece cual es el ancho máximo de línea para trabajar.
9 // Establecer como mínimo a 90. Recomendado 128 o 256.
11 #define MAX_LOADED_LINES 8096
13 typedef struct structhashblock
{
19 void reducetext(char * txt
);
20 unsigned int ihash(char *txt
);
21 unsigned int *hash_loadfile(char *filename
, int *size
);
22 char *loadfile(char *filename
, int *size
);
24 int compare2hashvectors(int *Bvector
, int Bsize
, int *Mvector
, int Msize
,
25 int MaxPassSize
, hashblock
*blocks
, int blocksize
);
27 int loadsplitplugin(void);