masqmail

view src/md5/hmac_md5.h @ 421:f37384470855

Changed lockdir to /var/lock/masqmail; Create lockdir and piddir on startup. Moved the lockdir out of the spool dir. (When /var/lock is a ramdisk we do well to have the lock files there.) Added the new configure option --with-lockdir to change that location. Nontheless, if we run_as_user, then lock files are always stored in the spool dir directly. Instead of installing the lockdir and piddir at installation time, we create them on startup time now if they are missing. This is necessary if lockdir or piddir are a tmpfs.
author markus schnalke <meillo@marmaro.de>
date Wed, 30 May 2012 09:38:38 +0200
parents 0f36c0a46f82
children
line source
1 void hmac_md5(
2 unsigned char *text, /* pointer to the message */
3 int textlen, /* length of the message */
4 unsigned char *key, /* pointer to the authentication key */
5 int keylen, /* length of the key */
6 unsigned char *digest /* pointer to allocated memory to store the computed HMAC */
7 );