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
|
/* $OpenLDAP$ */
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
* Copyright 1998-2022 The OpenLDAP Foundation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in the file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
#include "portable.h"
#include <stdio.h>
#include <ac/stdlib.h>
#include <ac/ctype.h>
#include <ac/signal.h>
#include <ac/socket.h>
#include <ac/string.h>
#include <ac/time.h>
#include <lber.h>
#include "lutil.h"
/*
* Password Test Program
*/
static char *hash[] = {
#ifdef SLAP_AUTHPASSWD
"SHA1", "MD5",
#else
#ifdef SLAPD_CRYPT
"{CRYPT}",
#endif
"{SSHA}", "{SMD5}",
"{SHA}", "{MD5}",
"{BOGUS}",
#endif
NULL
};
static struct berval pw[] = {
{ sizeof("secret")-1, "secret" },
{ sizeof("binary\0secret")-1, "binary\0secret" },
{ 0, NULL }
};
int
main( int argc, char *argv[] )
{
int i, j, rc;
struct berval *passwd;
#ifdef SLAP_AUTHPASSWD
struct berval *salt;
#endif
struct berval bad;
bad.bv_val = "bad password";
bad.bv_len = sizeof("bad password")-1;
for( i= 0; hash[i]; i++ ) {
for( j = 0; pw[j].bv_len; j++ ) {
#ifdef SLAP_AUTHPASSWD
rc = lutil_authpasswd_hash( &pw[j],
&passwd, &salt, hash[i] );
if( rc )
#else
passwd = lutil_passwd_hash( &pw[j], hash[i] );
if( passwd == NULL )
#endif
{
printf("%s generate fail: %s (%d)\n",
hash[i], pw[j].bv_val, pw[j].bv_len );
continue;
}
#ifdef SLAP_AUTHPASSWD
rc = lutil_authpasswd( &pw[j], passwd, salt, NULL );
#else
rc = lutil_passwd( passwd, &pw[j], NULL );
#endif
printf("%s (%d): %s (%d)\t(%d) %s\n",
pw[j].bv_val, pw[j].bv_len, passwd->bv_val, passwd->bv_len,
rc, rc == 0 ? "OKAY" : "BAD" );
#ifdef SLAP_AUTHPASSWD
rc = lutil_authpasswd( passwd, salt, &bad, NULL );
#else
rc = lutil_passwd( passwd, &bad, NULL );
#endif
printf("%s (%d): %s (%d)\t(%d) %s\n",
bad.bv_val, bad.bv_len, passwd->bv_val, passwd->bv_len,
rc, rc != 0 ? "OKAY" : "BAD" );
}
printf("\n");
}
return EXIT_SUCCESS;
}
|