diff options
| author | Franklin Wei <git@fwei.tk> | 2016-04-03 12:15:44 -0400 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2016-04-03 12:15:44 -0400 |
| commit | 724f4ee59b0af7b64a3317af3c9ee5d3f45e9fc4 (patch) | |
| tree | 9e1f93726995bfd2d8e2e355f7ca3d0869be037f /src/auth.h | |
| parent | 73c9244faee21a65e2143cc52dcbcf5cfe0648c6 (diff) | |
| download | netcosm-724f4ee59b0af7b64a3317af3c9ee5d3f45e9fc4.zip netcosm-724f4ee59b0af7b64a3317af3c9ee5d3f45e9fc4.tar.gz netcosm-724f4ee59b0af7b64a3317af3c9ee5d3f45e9fc4.tar.bz2 netcosm-724f4ee59b0af7b64a3317af3c9ee5d3f45e9fc4.tar.xz | |
various fixes
Diffstat (limited to 'src/auth.h')
| -rw-r--r-- | src/auth.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -20,13 +20,13 @@ #include "globals.h" -#define SALT_LEN 12 +#define SALT_LEN 16 #define AUTH_HASHLEN SHA512_DIGEST_LENGTH #define AUTH_HASHFUNC SHA512 -//#define HASH_ITERS 500000 #define HASH_ITERS 1 +//#define HASH_ITERS 1 -/* makes admin account */ +/* makes admin account based on terminal input */ void first_run_setup(void); struct userdata_t; |