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
This commit is contained in:
Stephen J. Kiernan 2018-07-14 16:59:17 +00:00
parent ffd4bf82de
commit 38d5d2d53b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=336284
2 changed files with 0 additions and 55 deletions

View File

@ -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>

View File

@ -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);