aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/fics_getsalt.h
blob: c22f9c833697a4cd142be549be58b9b8671f95d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef FICS_GETSALT_H
#define FICS_GETSALT_H

#define FICS_SALT_BEG	"$2b$10$"
#define FICS_SALT_SIZE	30

#ifdef __cplusplus
extern "C" {
#endif

char *fics_getsalt(void);

#ifdef __cplusplus
}
#endif

#endif