search for: keysch

Displaying 2 results from an estimated 2 matches for "keysch".

Did you mean: keysh
2001 Jun 06
0
snk authentication
..., + &k0, &k1, &k2, &k3, &k4, &k5, &k6, &k7); + if(x != 8) + return(1); + k[0] = k0; + k[1] = k1; + k[2] = k2; + k[3] = k3; + k[4] = k4; + k[5] = k5; + k[6] = k6; + k[7] = k7; + return(0); +} + + + +int do_snk(char *chal, char *pass, char *rbuf) { + des_key_schedule keysched; + des_cblock kblock; + char buf[12]; + char cbuf[12]; + int i; + int j; + unsigned long kval = 0; + + /* set up a key from the shared secret */ + if(make_key_sched(pass,kblock)) { + strcpy(rbuf,"Cannot decode user secret key"); + return(1); + } + for(i=0; i < 64; i++)pa...
2006 Sep 12
1
openssh (OpenBSD) , bsdauth and tis authsrv
nuqneH, I've tried using TIS authsrv authentication via bsd auth and found it quite limited. The most important restriction it does not log ip and fqdn of the remote peer, nor the application name, to the authentication server. It does not matter much for TIS authsrv, but since other applications do provide such information, our authsrv version uses it for extra authentication restrictions.