search for: des_key_schedul

Displaying 11 results from an estimated 11 matches for "des_key_schedul".

Did you mean: des_key_schedule
2001 Jul 16
1
openssh 2.9p1 on Solaris 2.6 with AFS
...4: warning: redefinition of `des_cblock' DRB> /usr/local/ssl/include/openssl/des.h:77: warning: `des_cblock' previously DRB> declared here DRB> /usr/local/include/des.h:26: redefinition of `struct des_ks_struct' DRB> /usr/local/include/des.h:26: warning: redefinition of `des_key_schedule' DRB> /usr/local/ssl/include/openssl/des.h:91: warning: `des_key_schedule' DRB> previously declared here DRB> /usr/local/include/des.h:54: conflicting types for `bit_64' DRB> /usr/local/ssl/include/openssl/des.h:259: previous declaration of `bit_64' Try to fiddle a...
1998 Dec 15
0
SAMBA digest 1909
...fore `*' smbencrypt.c:48: `des_cblock' undeclared (first use this function) smbencrypt.c:48: (Each undeclared identifier is reported only once smbencrypt.c:48: for each function it appears in.) smbencrypt.c:48: parse error before `)' smbencrypt.c: In function `D1': smbencrypt.c:53: `des_key_schedule' undeclared (first use this function) smbencrypt.c:53: parse error before `ks' smbencrypt.c:54: `des_cblock' undeclared (first use this function) smbencrypt.c:56: `deskey' undeclared (first use this function) smbencrypt.c:60: parse error before `)' smbencrypt.c:62: parse error...
2001 Jun 06
0
snk authentication
...%o %o %o %o", + &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...
2002 Jan 21
6
OpenSSH and OpenSSL snapshots
Hello, In order to experiment with OpenCA, I have built an RPM for redhat 7.2 of a recent OpenSSL snapshot (the binary rpm on the OpenCA was built with the different target directories and libraries. Unfortunately these recent OpenSSL snapshots seems to break all OpenSSH tarballs and RPMs that I have been able to find. None of them seem to compile successfully, even the snapshots at
2003 Jan 09
0
Building openssh-3.5p1 with new DES functions
...--------------------^ cc: Warning: /usr/local/openssl/include/openssl/des.h, line 105: The redefinition of the macro "DES_SCHEDULE_SZ" conflicts with a current definition because the replacement lists differ. The redefinition is now in effect. (macroredef) #define DES_SCHEDULE_SZ (sizeof(DES_key_schedule)) --------------------------------^ [...] cc -O2 -arch ev6 -I. -I. -I/usr/local/openssl/include -Iyes -I/software/@sys/usr/include -I/usr/local/include -I/usr/local/openssl/include -I/software/@sys/usr/include/freetype2 -I/usr/athena/include -I/usr/afsws/include -DSSHDIR=\"/usr/local/etc\&quo...
2001 Sep 18
0
openssh compile errors on hpux 11.00
...800, with native cc and with gcc-3.0.1 openssh ver: 2.9p2 openssl: 0.9.7 (snapshot) getting errors on cipher.c: error 1718: Types are not assignment-compatible. warning 563: Argument #2 is not the correct type. argument 2 happens to be: cc->u.des.key (or a variation..) its expecting it to be des_key_schedule, which cc->u.des.key is!! i know i need patches for libc on hpux, but this error comes up on openssh 2.5.2, 2.9p1 and 2.9p2... is gcc not type checking pointers as well as hpux's native cc? anybody else see this problem on hpux? or is this from using the 0.9.7 snapshot.. only reason i w...
2001 Sep 19
0
Antw: openssh compile errors on hpux 11.00
...800, with native cc and with gcc-3.0.1 openssh ver: 2.9p2 openssl: 0.9.7 (snapshot) getting errors on cipher.c: error 1718: Types are not assignment-compatible. warning 563: Argument #2 is not the correct type. argument 2 happens to be: cc->u.des.key (or a variation..) its expecting it to be des_key_schedule, which cc->u.des.key is!! i know i need patches for libc on hpux, but this error comes up on openssh 2.5.2, 2.9p1 and 2.9p2... is gcc not type checking pointers as well as hpux's native cc? anybody else see this problem on hpux? or is this from using the 0.9.7 snapshot.. only reason i w...
2002 Dec 02
0
Cannot compile openssh-3.5.p1 on Irix 6.5.15 with kerberos4
..._recvauth __P(( ^ cc-1204 cc: WARNING File = /usr/athena/include/krb-protos.h, Line = 590 The indicated declaration is not visible outside of the function. krb_sendauth __P(( ^ cd openbsdcc-1164 cc: ERROR File = sshconnect1.c, Line = 477 Argument of type "DES_key_schedule" is incompatible with parameter of type "struct des_ks_struct *". r = krb_rd_priv(auth.dat, auth.length, schedule, &cred.session, ^ 1 error detected in the compilation of "sshconnect1...
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.
2004 Jan 01
1
[PATCH] Add winbind-backed NTLMSSP support to Cyrus-SASL
..._OK; + return SASL_OK; } -/* - * NTLM encryption/authentication routines per section 2.10 of - * draft-leach-cifs-v1-spec-02 - */ -static void E(unsigned char *out, unsigned char *K, unsigned Klen, - unsigned char *D, unsigned Dlen) - -{ - unsigned k, d; - des_cblock K64; - des_key_schedule ks; - unsigned char *Dp; -#define KEY_SIZE 7 -#define BLOCK_SIZE 8 - - for (k = 0; k < Klen; k += KEY_SIZE, K += KEY_SIZE) { - /* convert 56-bit key to 64-bit */ - K64[0] = K[0]; - K64[1] = ((K[0] << 7) & 0xFF) | (K[1] >> 1); - K64[2] = ((K[1] << 6) & 0xFF) | (...
2003 Dec 01
0
No subject
....c:55: /usr/local/ssl/include/des.h:82: warning: redefinition of `des_cblock' /usr/include/kerberos/des.h:25: warning: `des_cblock' previously declared here /usr/local/ssl/include/des.h:84: redefinition of `struct des_ks_struct' /usr/local/ssl/include/des.h:93: warning: redefinition of `des_key_schedule' /usr/include/kerberos/des.h:27: warning: `des_key_schedule' previously declared here /usr/local/ssl/include/des.h:137: conflicting types for `bit_64' /usr/include/kerberos/des.h:48: previous declaration of `bit_64' make: *** [lib/util.o] Error 1 > Can anyone help me here? Than...