1 /* $NetBSD: checkpasswd.c,v 1.9 2011/01/06 02:45:13 jakllsch Exp $ */
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * @(#)gets.c 8.1 (Berkeley) 6/11/93
32 #include <lib/libkern/libkern.h>
40 getpass(const char *prompt
)
44 static char buf
[128]; /* == _PASSWORD_LEN */
49 switch (c
= getchar() & 0177) {
74 for (p
= buf
; p
< lp
; ++p
)
97 char bootpasswd
[16] = {'\0'}; /* into data segment! */
103 return check_password(bootpasswd
);
107 check_password(const char *password
)
114 for (i
= 0; i
< 16; i
++)
118 return 1; /* no password set */
120 for (i
= 0; i
< 3; i
++) {
121 passwd
= getpass("Password: ");
123 MD5Update(&md5ctx
, passwd
, strlen(passwd
));
124 MD5Final(pwdigest
, &md5ctx
);
125 if (memcmp(pwdigest
, password
, 16) == 0)