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
198 B
C

#include <inttypes.h>
#ifndef rainbowvalue
#define rainbowvalue
#define MAX_PW_LEN 64
struct s_rainbowvalue256 {
char pw[MAX_PW_LEN];
uint8_t hash[32]; // 32 * 8bit = 256 bit
};
#endif