diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2010-06-29 19:50:17 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2010-06-29 19:50:17 +0000 |
commit | e69cd500249d0f33ac2315b0a6fa39715244a3bf (patch) | |
tree | b9287111a7b0376eb1a89a399ac05348d8e390bb /sbin/isakmpd/Makefile | |
parent | 752e13003d3f50cf77229b00727f7a386d28facf (diff) |
Replace the hand-crafted Diffie-Hellman implementation in isakmpd with
the smaller implementation from iked that is using libcrypto instead.
This allows to remove a lot of code (which is always good), get rid of
some custom crypto code by using libcrypto, theoretically adds
support for many new MODP and EC2N/ECP modes (but it is not configurable
yet), and allows to share the dh.c/dh.h code in different codebases
(it is identical in isakmpd and iked, but could also be used elsewhere).
ok deraadt@
Diffstat (limited to 'sbin/isakmpd/Makefile')
-rw-r--r-- | sbin/isakmpd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/Makefile b/sbin/isakmpd/Makefile index fafc587d333..b3043946de6 100644 --- a/sbin/isakmpd/Makefile +++ b/sbin/isakmpd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.80 2008/01/29 00:47:08 espie Exp $ +# $OpenBSD: Makefile,v 1.81 2010/06/29 19:50:16 reyk Exp $ # $EOM: Makefile,v 1.78 2000/10/15 21:33:42 niklas Exp $ # @@ -38,10 +38,10 @@ SRCS= app.c attribute.c cert.c connection.c constants.c conf.c \ field.c hash.c if.c ike_auth.c ike_main_mode.c \ ike_phase_1.c ike_quick_mode.c init.c ipsec.c ipsec_fld.c \ ipsec_num.c isakmpd.c isakmp_doi.c isakmp_fld.c isakmp_num.c \ - key.c libcrypto.c log.c message.c math_2n.c math_group.c \ + key.c libcrypto.c log.c message.c \ prf.c sa.c sysdep.c timer.c transport.c virtual.c udp.c \ ui.c util.c x509.c \ - pf_key_v2.c policy.c math_ec2n.c ike_aggressive.c isakmp_cfg.c \ + pf_key_v2.c policy.c ike_aggressive.c isakmp_cfg.c \ dpd.c monitor.c monitor_fdpass.c nat_traversal.c udp_encap.c \ vendor.c |