blob: 317ae27892c0755815dbc52ffce815b0e24392ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
#ifndef FICS_GETSALT_H
#define FICS_GETSALT_H
#include "common.h"
#define FICS_SALT_BEG	"$2b$10$"
#define FICS_SALT_SIZE	30
__FICS_BEGIN_DECLS
char *fics_getsalt(void);
__FICS_END_DECLS
#endif
  |