Displaying 3 results from an estimated 3 matches for "des_set_odd_parity".
2002 Apr 24
2
OpenSSH and support for KTH-Krb4
...multiply-defined:
(file /usr/athena/lib/libdes.a(set_key.o) and file
/usr/local/ssl/lib/libcrypto.a(set_key.o));
ld: fatal: symbol `des_set_key' is multiply-defined:
(file /usr/athena/lib/libdes.a(set_key.o) and file
/usr/local/ssl/lib/libcrypto.a(set_key.o));
ld: fatal: symbol `des_set_odd_parity' is multiply-defined:
(file /usr/athena/lib/libdes.a(set_key.o) and file
/usr/local/ssl/lib/libcrypto.a(set_key.o));
ld: fatal: symbol `des_check_key' is multiply-defined:
(file /usr/athena/lib/libdes.a(set_key.o) and file
/usr/local/ssl/lib/libcrypto.a(set_key.o));
ld: fata...
2001 Jun 18
0
multiply-defined error during make
...,
During the make of openssh-2.9 on solaris 5.8 make failed with the following
error:
ld: fatal: symbol `des_check_key' is multiply-defined:
(file /xxx/xxx/solaris/admin/sys/krb4/lib/libdes.a(set_key.o) and
file /
xxx/xxx/solaris/openssl/lib/libcrypto.a(set_key.o));
ld: fatal: symbol `des_set_odd_parity' is multiply-defined:
(file /xxx/xxx/solaris/admin/sys/krb4/lib/libdes.a(set_key.o) and
file /
xxx/xxx/solaris/openssl/lib/libcrypto.a(set_key.o));
ld: fatal: symbol `des_is_weak_key' is multiply-defined:
My configure included the following options:
--prefix=/xxx/xxx/solaris/ssh --...
2004 Jan 01
1
[PATCH] Add winbind-backed NTLMSSP support to Cyrus-SASL
...- K64[3] = ((K[2] << 5) & 0xFF) | (K[3] >> 3);
- K64[4] = ((K[3] << 4) & 0xFF) | (K[4] >> 4);
- K64[5] = ((K[4] << 3) & 0xFF) | (K[5] >> 5);
- K64[6] = ((K[5] << 2) & 0xFF) | (K[6] >> 6);
- K64[7] = (K[6] << 1) & 0xFF;
-
- des_set_odd_parity(&K64); /* XXX is this necessary? */
- des_set_key(&K64, ks);
-
- for (d = 0, Dp = D; d < Dlen;
- d += BLOCK_SIZE, Dp += BLOCK_SIZE, out += BLOCK_SIZE) {
- des_ecb_encrypt((void *) Dp, (void *) out, ks, DES_ENCRYPT);
- }
- }
-}
-
-static unsigned char *P16_lm(unsigned char *...