search for: skey_haskey

Displaying 3 results from an estimated 3 matches for "skey_haskey".

2000 Jul 26
1
compiling openssh with skey? Fails on redhat linux
...led, the compile fails with the following errors: auth1.c: In function `do_authloop': auth1.c:331: warning: implicit declaration of function `skey_keyinfo' auth1.c:331: warning: initialization makes pointer from integer without a cast auth1.c:353: warning: implicit declaration of function `skey_haskey' auth1.c:354: warning: implicit declaration of function `skey_passcheck' session.c: In function `do_authenticated': session.c:159: warning: `type' might be used uninitialized in this function session.c:195: warning: `success' might be used uninitialized in this function auth1.o...
2001 Jun 03
1
OPIE support patch
...on Mar 5 07:59:27 2001 +++ openssh-2.5.2p2/auth-chall.c Sun Jun 3 18:34:43 2001 @@ -67,7 +67,7 @@ debug("verify_response: <%s> = <%d>", response, authok); return authok != 0; } -#else +#else /* BSD_AUTH */ #ifdef SKEY #include <skey.h> @@ -88,6 +88,25 @@ skey_haskey(authctxt->pw->pw_name) == 0 && skey_passcheck(authctxt->pw->pw_name, response) != -1); } +#else /* SKEY */ +#ifdef OPIE +#include <opie.h> + +char * +get_challenge(Authctxt *authctxt, char *devs) +{ + static char challenge[OPIE_CHALLENGE_MAX+64]; + if (opiechallenge...
2000 Mar 07
1
Fail to compile on FreeBSD 3.3
...o: In function `do_authloop': /usr/local/src/openssh-1.2.2/sshd.c(.text+0x1d68): undefined reference to `skey_keyinfo' /usr/local/src/openssh-1.2.2/sshd.c(.text+0x1d8a): undefined reference to `skey_fake_keyinfo' /usr/local/src/openssh-1.2.2/sshd.c(.text+0x1e52): undefined reference to `skey_haskey' /usr/local/src/openssh-1.2.2/sshd.c(.text+0x1e64): undefined reference to `skey_passcheck' sshd.o: In function `do_fake_authloop': /usr/local/src/openssh-1.2.2/sshd.c(.text+0x1fff): undefined reference to `skey_fake_keyinfo' *** Error code 1 Stop. How can I solve it, please help?...