diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-08 10:42:21 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-08 10:42:21 +0000 |
commit | 88ad00b82acc4636ab57dfe710af08ea85b82ff1 (patch) | |
tree | cd7a154b1e7e814870840c3a7c1255bb88ad0c72 /source/include/secrets.h | |
parent | 1d3bd3c486bf9f6b6c9d5f6207f591f465517e1e (diff) | |
download | samba-88ad00b82acc4636ab57dfe710af08ea85b82ff1.tar.gz samba-88ad00b82acc4636ab57dfe710af08ea85b82ff1.tar.xz samba-88ad00b82acc4636ab57dfe710af08ea85b82ff1.zip |
added secrets.tdb and changed storage of trust account password to use
it
Diffstat (limited to 'source/include/secrets.h')
-rw-r--r-- | source/include/secrets.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source/include/secrets.h b/source/include/secrets.h new file mode 100644 index 00000000000..a87bdef56b7 --- /dev/null +++ b/source/include/secrets.h @@ -0,0 +1,11 @@ + + + +#define SECRETS_MACHINE_ACCT_PASS "SECRETS/$MACHINE.ACC" +#define SECRETS_SAM_SID "SAM/SAM_SID" + +struct machine_acct_pass { + uint8 hash[16]; + time_t mod_time; +}; + |