From 38d5d2d53b1f1e0a6e0a317c1457b2ccf49631a8 Mon Sep 17 00:00:00 2001 From: "Stephen J. Kiernan" Date: Sat, 14 Jul 2018 16:59:17 +0000 Subject: [PATCH] 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 --- sys/modules/mac_veriexec_rmd160/Makefile | 10 ----- .../mac_veriexec/mac_veriexec_rmd160.c | 45 ------------------- 2 files changed, 55 deletions(-) delete mode 100644 sys/modules/mac_veriexec_rmd160/Makefile delete mode 100644 sys/security/mac_veriexec/mac_veriexec_rmd160.c 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 - 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 - -#include -#include - -#include - -#include - -#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);