The GnuPG package contains a public/private key encryptor. This is becoming useful for signing files or emails as proof of identity and preventing tampering with contents of the file or email.
Download (HTTP): http://public.ftp.planetmirror.com/pub/gnupg/gnupg-1.4.0.tar.bz2
Download (FTP): ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-1.4.0.tar.bz2
Download MD5 Sum: 8c303606aaf73b7756b9fe6f3d8b58c2
Download size: 2.7 MB
Estimated disk space required: 25 MB
Estimated build time: 0.44 SBU
Install GnuPG by running the following commands:
./configure --prefix=/usr --libexecdir=/usr/lib &&
make
Now, as the root user:
make install &&
chmod 4755 /usr/bin/gpg
--libexecdir=/usr/lib: This command creates a gnupg directory in /usr/lib instead of /usr/libexec.
chmod 4755 /usr/bin/gpg: gpg is installed setuid root to avoid swapping out sensitive data.
Last updated on 2005-02-11 07:07:57 -0700