You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
173 B
C

#ifndef rainbowvalue
#define rainbowvalue
#define MAX_PW_LEN 64
struct s_rainbowvalue256 {
char pw[MAX_PW_LEN];
char hash[32]; // 32 * 8bit = 256 bit
};
#endif