diff options
author | Job Snijders <job@cvs.openbsd.org> | 2022-11-02 12:43:03 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2022-11-02 12:43:03 +0000 |
commit | e17f607fbc86892fab7be337c821a84027f605fb (patch) | |
tree | edb189f0266296419ebca13718f32624812cc990 /usr.sbin/rpki-client/Makefile | |
parent | b931f2967cb6eae6a9015527fc4eb5053f70d6b2 (diff) |
Add support for draft-ietf-sidrops-signed-tal-12
Add support validation of Signed Objects containing Trust Anchor Keys
(TAKs - aka 'Signed TALs'). Signed TALs provide a mechanism for RIRs
to distribute and sign the next Trust Anchor with the current Trust
Anchor. This might be an improvement over visiting RIR websites and
copy+pasting TAL data by hand.
OK tb@
Diffstat (limited to 'usr.sbin/rpki-client/Makefile')
-rw-r--r-- | usr.sbin/rpki-client/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/Makefile b/usr.sbin/rpki-client/Makefile index a7198aa4874..37393fbb3f4 100644 --- a/usr.sbin/rpki-client/Makefile +++ b/usr.sbin/rpki-client/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.26 2022/08/30 18:56:49 job Exp $ +# $OpenBSD: Makefile,v 1.27 2022/11/02 12:43:02 job Exp $ PROG= rpki-client SRCS= as.c aspa.c cert.c cms.c crl.c encoding.c filemode.c gbr.c http.c io.c \ ip.c log.c main.c mft.c mkdir.c output.c output-bgpd.c output-bird.c \ output-csv.c output-json.c parser.c print.c repo.c roa.c rrdp.c \ rrdp_delta.c rrdp_notification.c rrdp_snapshot.c rrdp_util.c \ - rsc.c rsync.c tal.c validate.c x509.c + rsc.c rsync.c tak.c tal.c validate.c x509.c MAN= rpki-client.8 LDADD+= -lexpat -ltls -lssl -lcrypto -lutil |