Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Jun 1998 01:12:40 -0300 (EST)
From:      Joao Carlos Mendes Luis <jonny@jonny.eng.br>
To:        girgen@partitur.se (Palle Girgensohn)
Cc:        stable@FreeBSD.ORG
Subject:   Re: bilingual lib*crypt?
Message-ID:  <199806190412.BAA25443@roma.coe.ufrj.br>
In-Reply-To: <3589C7C1.76534DB0@partitur.se> from Palle Girgensohn at "Jun 19, 98 04:06:57 am"

next in thread | previous in thread | raw e-mail | index | archive | help
#define quoting(Palle Girgensohn)
// Also, my real question is this: is this part of libdescrypt? That is,
// will it work this way for all apps using crypt, or just for passwords? 

lrwxrwxrwx  1 root  bin  13 Jun  1 22:34 /usr/lib/libcrypt.a -> libdescrypt.a
lrwxrwxrwx  1 root  bin  18 Jun  1 22:34 /usr/lib/libcrypt.so.2.0 -> libdescrypt.so.2.0
lrwxrwxrwx  1 root  bin  15 Jun  1 22:34 /usr/lib/libcrypt_p.a -> libdescrypt_p.a

// Do I need to recompile all apps using crypt, or will libc be sufficient?

libcrypt is enough.

But remember: New passwords -> DES

If you only need this as a client, no problem.

// If the previous, have you any tips on how to find out which apps (read
// ports) that uses libcrypt, besides manually checking each port?

for a in /usr/local/*bin/* ; do
  ldd $a
done

:)

For example, ssh:

roma::root [557] ldd /usr/local/bin/ssh
/usr/local/bin/ssh:
        -lgmp.3 => /usr/lib/libgmp.so.3.0 (0x2003d000)
        -lz.2 => /usr/lib/libz.so.2.0 (0x20053000)
        -lwrap.7 => /usr/local/lib/libwrap.so.7.6 (0x20060000)
        -lcrypt.2 => /usr/lib/libcrypt.so.2.0 (0x20065000)
        -lutil.2 => /usr/lib/libutil.so.2.2 (0x2007a000)
        -lc.3 => /usr/lib/libc.so.3.1 (0x20080000)

					Jonny

--
Joao Carlos Mendes Luis            M.Sc. Student
jonny@jonny.eng.br                 Universidade Federal do Rio de Janeiro

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199806190412.BAA25443>