markm
c9989cede1
Fix for the NO_OPENSSL case.
...
Reported by: Marius Strobl <marius@alchemy.franken.de>
2003-06-08 08:24:07 +00:00
markm
6d070a0d03
Drop this MAINTAINER bit. I'll reclaim an "Advisory Maintainership"
...
for this area later.
2003-06-04 16:10:20 +00:00
markm
8e268e6fc3
I'm now happy that this is no longer needed. Libcrypto has
...
all its functionality, and all its consumers have been converted.
2003-06-04 15:26:34 +00:00
markm
0e343897fb
Disconnect libcipher from the build. It only does DES, and we already
...
have libcrypto to do that. Both consumers of this lib have been
converted to use libcrypto. (bin/ed and secure/usr.bin/bdes).
2003-06-02 20:03:32 +00:00
markm
c9e0f045e6
Strip the private blowfish code down to only that which is
...
required to make crypt(3) blowfish "$2a$..." hashes. Lint and
warnsify.
2003-06-02 19:17:24 +00:00
markm
eea4d78677
Modernise. Use libcrypto instead of libcipher for DES.
2003-06-02 19:10:59 +00:00
obrien
113e55804c
Ugg, wrong version.
...
CSTD=gnu89, c89 wont do.
2003-06-01 23:39:16 +00:00
obrien
39c3dcb697
This isn't C99 clean.
2003-06-01 23:37:46 +00:00
markm
ee63e7dc15
Turn MAKE_KERBEROS5 into NO_KERBEROS by negating the logic. Some extra
...
cleanups were necessary in release/Makefile, and the tinderbox code
was syntax checked, not run checked.
2003-05-05 07:58:44 +00:00
markm
06bd19ebb1
We no longer have a separate kerberos distribution. Its now just
...
part of the regular security dist.
2003-04-30 17:46:24 +00:00
ru
807a352217
The including makefile's directory is tried first for .include "...".
2003-04-30 07:54:39 +00:00
ru
4e8be68394
Most things depend on !defined(NO_OPENSSL); make it look so.
2003-04-30 07:51:51 +00:00
ru
026dd985be
NOSECURE is implied by NOCRYPT, meaning if the latter is defined
...
we won't be here.
2003-04-30 07:34:14 +00:00
des
97c8ef8dd1
Remove Kerberos IV shims.
2003-04-23 17:26:01 +00:00
des
ea5dc58e56
Update for 3.6.1p1; also remove Kerberos IV shims.
2003-04-23 17:25:47 +00:00
bde
b290b293cf
Silence `make -s' (echo -> ${ECHO}).
2003-04-13 14:13:28 +00:00
ru
17f3ff85b3
libtelnet depends on OpenSSL.
...
PR: 50507
2003-04-01 12:50:40 +00:00
charnier
ed068996dc
The .Nm utility
2003-03-24 16:09:07 +00:00
obrien
351221da0d
Back out rev 1.60, taking the pointy hat away from nectar as 'rm -f'
...
doesn't need to be prefixed with '-'. Keep the pointy hat for myself
for not reading the code closely.
2003-03-11 17:19:37 +00:00
obrien
84a73cfb24
Don't error out the build if removing a "stale" symlink fails.
...
Pointy hat for breaking my installworld: nectar
2003-03-10 19:43:56 +00:00
mtm
215e222a66
Fix mixed up arguments passed to a locally defined err(int, char *)
...
function.
Approved by: markm (mentor)
Submitted by: till toenges <tt@mail.isis.de>
PR: bin/48963
2003-03-07 16:00:55 +00:00
ru
165c565db3
Handle includes the normal way.
...
Reviewed by: markm
Approved by: nectar
2003-02-27 23:07:26 +00:00
nectar
490f7849d9
Regenerate man pages after import of OpenSSL 0.9.7a.
2003-02-19 23:30:52 +00:00
nectar
b59b6bc887
LIBDIR/INCLUDEDIR do not include DESTDIR.
...
Reported by: Andrzej Tobola <san@iem.pw.edu.pl>
2003-02-18 17:29:04 +00:00
nectar
f1000a6283
Follow-up to previous commit: we had a des.h symlink, too. Remove
...
that.
2003-02-18 16:07:33 +00:00
nectar
f671b30fa6
Previously, libcrypto contained symbols that were identical to EAY
...
libdes, and functionally close enough so that we created symlinks
(libdes -> libcrypto) to help older applications. With the import of
OpenSSL 0.9.7, this is no longer true and we no longer install these
symlinks. However, systems that are upgraded may have these symlinks,
which could cause non-obvious breakage at build-time. Therefore, blow
any old symlinks away in the `afterinstall' target.
2003-02-18 14:23:11 +00:00
nectar
90c5cfa574
Correct path for finding asm-generating files.
2003-02-14 12:25:00 +00:00
nectar
b36647ffe0
Install the OpenSSL man pages in /usr/share/openssl/man
...
and remove the WANT_OPENSSL_MANPAGES knob.
2003-02-10 19:57:56 +00:00
nectar
aa5fb3b42f
Do not define OPENSSL_NO_KRB5 here in CFLAGS. It is handled in
...
opensslconf.h.
Reminded by: reports from des, obrien
2003-02-09 14:59:56 +00:00
nectar
c2f3a5547f
Re-add WANT_OPENSSL_MANPAGES knob.
...
Noticed by: ru
2003-01-31 11:30:38 +00:00
nectar
637cc179f5
Background:
...
When libdes was replaced with OpenSSL's libcrypto, there were a few
interfaces that the former implemented but the latter did not. Because
some software in the base system still depended upon these interfaces,
we simply included them in our libcrypto (rnd_keys.c).
Now, finally get around to removing the dependencies on these
interfaces. There were basically two cases:
des_new_random_key -- This is just a wrapper for des_random_key, and
these calls were replaced.
des_init_random_number_generator et. al. -- A few functions were used
by the application to seed libdes's PRNG. These are not necessary
when using libcrypto, as OpenSSL internally seeds the PRNG from
/dev/random. These calls were simply removed.
Again, some of the Kerberos 4 files have been taken off the vendor
branch. I do not expect there to be future imports of KTH Kerberos 4.
2003-01-29 18:14:29 +00:00
nectar
28586b8dce
Re-add WANT_OPENSSL_MANPAGES knob.
2003-01-29 13:35:40 +00:00
peter
1cdf5f0a55
Hopefully fix world for folks not compiling IDEA (the default).
...
NO_IDEA is now spelled OPENSSL_NO_IDEA. Update the bmake glue accordingly
or the IDEA references are not stripped from <openssl/evp.h>
2003-01-29 02:19:15 +00:00
nectar
cc3760c973
Force OPENSSL_NO_KRB5. OpenSSL's current implementation of RFC 2712
...
can only be built with MIT Kerberos.
If we didn't define this here, then SSL-using applications would have
to define OPENSSL_NO_KRB5 themselves in order to build.
2003-01-29 01:06:15 +00:00
markm
ecacd12edb
Update for OpenSSL 0.9.7. No assembler code at the moment. This
...
will follow.
2003-01-28 22:58:14 +00:00
des
5a36cfc6d3
ia64 and sparc64 both have libc_r now.
2003-01-09 08:36:05 +00:00
des
4db7824c37
Don't build auth-pam.c and auth2-pam.c, auth2-pam-freebsd.c is all we need.
...
Use pthreads for PAM if the platform supports it and the user asked for it
(by setting OPENSSH_USE_POSIX_THREADS)
Sponsored by: DARPA, NAI Labs
2002-12-14 13:54:57 +00:00
kris
22dd80b806
Remove myself as maintainer of openssl; I no longer have enough time to
...
devote to it.
2002-11-21 08:48:08 +00:00
ru
d07178d31f
DON'T EVER PUT THIS BACK!
...
Pointy hat to: obrien
2002-11-08 12:47:51 +00:00
obrien
afccab5282
Style sync with rest of FreeBSD.
2002-11-06 22:54:58 +00:00
des
da156e9602
Update for OpenSSH 3.5p1.
2002-10-29 10:18:00 +00:00
markm
1244ddc10e
Don't lint contrib'ed sources, even if the builder has asked for linting.
...
Its Just Too Noisy.
2002-09-25 09:58:00 +00:00
ru
b003f2381f
Bandaid for a broken world. The real fix is somewhat more
...
complicated and will be sent for a review.
2002-09-20 12:33:19 +00:00
ru
38695c19fd
Added the missing dependencies for openssl/ headers.
2002-09-19 13:24:27 +00:00
nectar
84a4209b10
Use uint32_t' instead of
unsigned long', since the code assumes 32-bit
...
arithmetic.
Reviewed by: make test
The fact that bdes(1) didn't work was
Reported by: Fred Clift <fclift@verio.net>
2002-08-24 02:53:23 +00:00
nectar
60918054e9
Update list of installed manual pages after regenerating them.
2002-07-30 14:47:24 +00:00
nectar
9b12eca4b2
This commit was generated by cvs2svn to compensate for changes in r100946,
...
which included commits to RCS files with non-trunk default branches.
2002-07-30 14:34:51 +00:00
nectar
3b5892151d
Import the regenerated OpenSSL man pages after import of OpenSSL 0.9.6e.
2002-07-30 14:34:51 +00:00
nectar
edc9b2ee92
Update to match reality (i.e. reference libcrypto headers and
...
libraries, not the no-longer-existent libdes).
2002-07-30 12:53:15 +00:00
ru
c441264fcd
s,/usr/include,${INCLUDEDIR},
2002-07-22 10:59:22 +00:00