jessie rebuild
[hcoop/debian/courier-authlib.git] / checkpassword.c
CommitLineData
d9898ee8 1/*
ac40fd9e 2** Copyright 1998 - 2008 Double Precision, Inc. See COPYING for
d9898ee8 3** distribution information.
4*/
5
6#if HAVE_CONFIG_H
7#include "courier_auth_config.h"
8#endif
9#include <string.h>
10#if HAVE_UNISTD_H
11#include <unistd.h>
12#endif
13#if HAVE_CRYPT_H
14#include <crypt.h>
15#endif
16#include "auth.h"
17#include "courierauthdebug.h"
18
d9898ee8 19
20#if HAVE_CRYPT
21#if NEED_CRYPT_PROTOTYPE
22extern char *crypt(const char *, const char *);
23#endif
24#endif
25
d9898ee8 26extern int authcheckpasswordmd5(const char *, const char *);
d9898ee8 27extern int authcheckpasswordsha1(const char *, const char *);
d9898ee8 28
29static int do_authcheckpassword(const char *password, const char *encrypted_password)
30{
d9898ee8 31 if (strncmp(encrypted_password, "$1$", 3) == 0
dd184caf 32 || strncasecmp(encrypted_password, "{MD5}", 5) == 0
33 || strncasecmp(encrypted_password, "{MD5RAW}", 8) == 0
34 )
d9898ee8 35 return (authcheckpasswordmd5(password, encrypted_password));
d9898ee8 36
d9898ee8 37 if (strncasecmp(encrypted_password, "{SHA}", 5) == 0 ||
8d138742
CE
38 strncasecmp(encrypted_password, "{SHA256}", 8) == 0 ||
39 strncasecmp(encrypted_password, "{SHA512}", 8) == 0 ||
40 strncasecmp(encrypted_password, "{SSHA}", 6) == 0)
d9898ee8 41 return (authcheckpasswordsha1(password, encrypted_password));
d9898ee8 42
8d138742 43
d9898ee8 44#if HAVE_CRYPT
45 if (strncasecmp(encrypted_password, "{CRYPT}", 7) == 0)
46 encrypted_password += 7;
47#endif
48
49 return (
50#if HAVE_CRYPT
51 strcmp(encrypted_password,
52 crypt(password, encrypted_password))
53#else
54 strcmp(encrypted_password, password)
55#endif
56 );
57}
58
59int authcheckpassword(const char *password, const char *encrypted_password)
60{
61int rc;
62
63 rc=do_authcheckpassword(password, encrypted_password);
64 if (rc == 0)
65 {
66 DPRINTF("password matches successfully");
67 }
68 else if (courier_authdebug_login_level >= 2)
69 {
70 DPRINTF("supplied password '%s' does not match encrypted password '%s'",
71 password, encrypted_password);
72 }
73 else
74 {
75 DPRINTF("supplied password does not match encrypted password");
76 }
77 return rc;
78}