diff options
author | kris <kris@FreeBSD.org> | 2000-09-06 23:46:50 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-09-06 23:46:50 +0000 |
commit | 28c07215c292e94a3138d54c77a7fc93f17422fc (patch) | |
tree | 7af1b850d7309833f95dcf379770db14c863e0b8 /secure | |
parent | 1c08fd2080ea4f5236e90fed7e0db2b4790c284b (diff) | |
download | FreeBSD-src-28c07215c292e94a3138d54c77a7fc93f17422fc.zip FreeBSD-src-28c07215c292e94a3138d54c77a7fc93f17422fc.tar.gz |
``Anyone is now free to rub two primes together for their own gratification''
-- Unknown
Now that the RSA algorithm is released into the public domain, build
librsaintl by default unless NO_RSAINTL is set in make.conf.
The native OpenSSL implementation of RSA is much faster, doesn't have
an artificial keysize limitation, has 30% fewer calories and tastes great!
Diffstat (limited to 'secure')
-rw-r--r-- | secure/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/secure/lib/Makefile b/secure/lib/Makefile index 84bba0f..d061f66 100644 --- a/secure/lib/Makefile +++ b/secure/lib/Makefile @@ -10,7 +10,7 @@ SUBDIR+=libcrypto librsaglue libssl SUBDIR+=librsausa .endif .if exists(${.CURDIR}/../../crypto/openssl/crypto/rsa/rsa_eay.c) && \ - (${USA_RESIDENT} != YES || defined(MAKE_RSAINTL)) + !defined(NO_RSAINTL) SUBDIR+=librsaintl .endif .endif |