aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen J. Kiernan <stevek@FreeBSD.org>2018-07-14 16:59:17 +0000
committerStephen J. Kiernan <stevek@FreeBSD.org>2018-07-14 16:59:17 +0000
commit38d5d2d53b1f1e0a6e0a317c1457b2ccf49631a8 (patch)
treeb85cba8d71c891aaa05dc47c8f6d7ba15ddfd2ec
parentffd4bf82deba21567ae8a63dc483835efc54088a (diff)
downloadsrc-38d5d2d53b1f1e0a6e0a317c1457b2ccf49631a8.tar.gz
src-38d5d2d53b1f1e0a6e0a317c1457b2ccf49631a8.zip
Remove RIPEMD-160 fingerprint modules for veriexec, since it has very
little practical use and would not be recommended for anyone to use in a production environment. Reviewed by: sjg
Notes
Notes: svn path=/head/; revision=336284
-rw-r--r--sys/modules/mac_veriexec_rmd160/Makefile10
-rw-r--r--sys/security/mac_veriexec/mac_veriexec_rmd160.c45
2 files changed, 0 insertions, 55 deletions
diff --git a/sys/modules/mac_veriexec_rmd160/Makefile b/sys/modules/mac_veriexec_rmd160/Makefile
deleted file mode 100644
index 678e11f6dbbe..000000000000
--- a/sys/modules/mac_veriexec_rmd160/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-# $FreeBSD$
-
-.PATH: ${.CURDIR}/../../security/mac_veriexec
-.PATH: ${.CURDIR}/../../opencrypto
-
-KMOD= mac_veriexec_rmd160
-SRCS= mac_veriexec_rmd160.c rmd160.c
-
-.include <bsd.kmod.mk>
-
diff --git a/sys/security/mac_veriexec/mac_veriexec_rmd160.c b/sys/security/mac_veriexec/mac_veriexec_rmd160.c
deleted file mode 100644
index 5d019538f4cd..000000000000
--- a/sys/security/mac_veriexec/mac_veriexec_rmd160.c
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * $FreeBSD$
- *
- * Copyright (c) 2015, 2016, Juniper Networks, Inc.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- */
-
-#include <sys/cdefs.h>
-
-#include <sys/param.h>
-#include <sys/systm.h>
-
-#include <opencrypto/rmd160.h>
-
-#include <security/mac_veriexec/mac_veriexec.h>
-
-#ifndef RMD160_DIGEST_LENGTH
-#define RMD160_DIGEST_LENGTH 20
-#endif
-
-MAC_VERIEXEC_FPMOD(RMD160, RMD160_DIGEST_LENGTH, sizeof(RMD160_CTX),
- (mac_veriexec_fpop_init_t) RMD160Init,
- (mac_veriexec_fpop_update_t) RMD160Update,
- (mac_veriexec_fpop_final_t) RMD160Final, 1);