summaryrefslogtreecommitdiffstats
path: root/libexec/ftpd/skey-stuff.c
blob: 5c34b9b7395db9af2290798a88465625ce8ef35d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Author: Wietse Venema, Eindhoven University of Technology. */

#include <stdio.h>
#include <pwd.h>

#include <skey.h>

/* skey_challenge - additional password prompt stuff */

char   *skey_challenge(name, pwd, pwok)
char   *name;
struct passwd *pwd;
int     pwok;
{
    static char buf[128];
    struct skey skey;

    /* Display s/key challenge where appropriate. */

    if (pwd == 0 || skeychallenge(&skey, pwd->pw_name, buf) != 0)
	sprintf(buf, "%s required for %s.",
		pwok ? "Password" : "S/Key password", name);
    return (buf);
}
OpenPOWER on IntegriCloud