1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/*
** Copyright 2001-2008 Double Precision, Inc. See COPYING for
** distribution information.
*/
#if HAVE_CONFIG_H
#include "courier_auth_config.h"
#endif
#include <string.h>
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdlib.h>
#if HAVE_CRYPT_H
#include <crypt.h>
#endif
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#include "auth.h"
#include "md5/md5.h"
#include "sha1/sha1.h"
#include "random128/random128.h"
#if HAVE_CRYPT
#if NEED_CRYPT_PROTOTYPE
extern char *crypt(const char *, const char *);
#endif
#endif
static const char crypt_salt[65]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789./";
static const char *ssha_hash_int(const char *pw)
{
random128binbuf randbuf;
random128_binary(&randbuf);
return ssha_hash(pw, randbuf);
}
static const char *crypt_md5_wrapper(const char *pw)
{
struct timeval tv;
char salt[10];
int i;
gettimeofday(&tv, NULL);
tv.tv_sec |= tv.tv_usec;
tv.tv_sec ^= getpid();
strcpy(salt, "$1$");
for (i=3; i<8; i++)
{
salt[i]=crypt_salt[ tv.tv_sec % 64 ];
tv.tv_sec /= 64;
}
strcpy(salt+i, "$");
return (md5_crypt(pw, salt));
}
char *authcryptpasswd(const char *password, const char *encryption_hint)
{
const char *(*hash_func)(const char *)=0;
const char *pfix=0;
const char *p;
char *pp;
if (!encryption_hint || strncmp(encryption_hint, "$1$", 3) == 0)
{
pfix="";
hash_func=crypt_md5_wrapper;
}
if (!encryption_hint || strncasecmp(encryption_hint, "{MD5}", 5) == 0)
{
hash_func= &md5_hash_courier;
pfix="{MD5}";
}
if (!encryption_hint || strncasecmp(encryption_hint, "{MD5RAW}", 5)
== 0)
{
hash_func= &md5_hash_raw;
pfix="{MD5RAW}";
}
if (!encryption_hint || strncasecmp(encryption_hint, "{SHA}", 5) == 0)
{
hash_func= &sha1_hash;
pfix="{SHA}";
}
if (!encryption_hint || strncasecmp(encryption_hint, "{SSHA}", 6) == 0)
{
hash_func= &ssha_hash_int;
pfix="{SSHA}";
}
if (!encryption_hint ||
strncasecmp(encryption_hint, "{SHA256}", 8) == 0)
{
hash_func= &sha256_hash;
pfix="{SHA256}";
}
if (!encryption_hint ||
strncasecmp(encryption_hint, "{SHA512}", 8) == 0)
{
hash_func= &sha512_hash;
pfix="{SHA512}";
}
if (!hash_func)
{
hash_func= &ssha_hash_int;
pfix="{SSHA}";
}
p= (*hash_func)(password);
if (!p || (pp=malloc(strlen(pfix)+strlen(p)+1)) == 0)
return (0);
return (strcat(strcpy(pp, pfix), p));
}
|