1999-11-22-17:04:50 David DeSimone:
> From what I have read, GPG can be configured or built with external
> module support, so that it can read and use these RSA and IDEA based
> message formats.
>
> However, I haven't really found any good instructions for building such
> a version of GPG. There are some nice files in the "contrib" directory,
> but I don't know how to put them together to make it work.
Something like
wget ftp://ftp.gnupg.org/pub/gcrypt/contrib/idea.c
wget ftp://ftp.gnupg.org/pub/gcrypt/contrib/rsa.c
gcc -Wall -O2 -shared -fPIC -o /usr/lib/gnupg/idea idea.c
gcc -Wall -O2 -shared -fPIC -o /usr/lib/gnupg/rsa rsa.c
then in your .gnupg/options add a couple of lines like
load-extension idea
load-extension rsa
/usr/lib/gnupg may be wrong for your install. As a hint, I'd expect the
directory would be named gnupg, and a straight install of gnupg-1.0 ought to
have added files like "rndegd", "rndunix", and "tiger" there already.
-Bennett
PGP signature