diff options
| author | 2020-02-12 22:26:15 +0000 | |
|---|---|---|
| committer | 2020-02-12 22:26:15 +0000 | |
| commit | 841afb518d9ceb24ca11844afdef21fdd5622e7c (patch) | |
| tree | d1375efa85ab502d12a55168068700b23597bb8a | |
| parent | improve parsing of relay {} sections: (diff) | |
| download | wireguard-openbsd-841afb518d9ceb24ca11844afdef21fdd5622e7c.tar.xz wireguard-openbsd-841afb518d9ceb24ca11844afdef21fdd5622e7c.zip | |
remove some files containing only comments
| -rw-r--r-- | usr.bin/dig/lib/dns/dst_internal.h | 4 | ||||
| -rw-r--r-- | usr.bin/dig/lib/isc/Makefile.inc | 6 | ||||
| -rw-r--r-- | usr.bin/dig/lib/isc/hmacmd5.c | 27 | ||||
| -rw-r--r-- | usr.bin/dig/lib/isc/include/isc/hmacmd5.h | 29 | ||||
| -rw-r--r-- | usr.bin/dig/lib/isc/include/isc/md5.h | 47 | ||||
| -rw-r--r-- | usr.bin/dig/lib/isc/md5.c | 39 |
6 files changed, 4 insertions, 148 deletions
diff --git a/usr.bin/dig/lib/dns/dst_internal.h b/usr.bin/dig/lib/dns/dst_internal.h index 456df9cf393..ce890c40b94 100644 --- a/usr.bin/dig/lib/dns/dst_internal.h +++ b/usr.bin/dig/lib/dns/dst_internal.h @@ -31,7 +31,7 @@ * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: dst_internal.h,v 1.2 2020/02/11 17:23:29 florian Exp $ */ +/* $Id: dst_internal.h,v 1.3 2020/02/12 22:26:15 jsg Exp $ */ #ifndef DST_DST_INTERNAL_H #define DST_DST_INTERNAL_H 1 @@ -42,12 +42,10 @@ #include <isc/magic.h> #include <isc/region.h> #include <isc/types.h> -#include <isc/md5.h> #include <isc/refcount.h> #include <isc/sha1.h> #include <isc/sha2.h> #include <isc/stdtime.h> -#include <isc/hmacmd5.h> #include <isc/hmacsha.h> diff --git a/usr.bin/dig/lib/isc/Makefile.inc b/usr.bin/dig/lib/isc/Makefile.inc index 4560faa6f7d..6c343d42519 100644 --- a/usr.bin/dig/lib/isc/Makefile.inc +++ b/usr.bin/dig/lib/isc/Makefile.inc @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile.inc,v 1.2 2020/02/12 13:05:04 jsg Exp $ +# $OpenBSD: Makefile.inc,v 1.3 2020/02/12 22:26:15 jsg Exp $ .PATH: ${.CURDIR}/lib/isc SRCS+= assertions.c base32.c base64.c netaddr.c buffer.c bufferlist.c -SRCS+= error.c event.c hash.c heap.c hex.c hmacmd5.c hmacsha.c -SRCS+= inet_aton.c lex.c log.c md5.c regex.c sockaddr.c +SRCS+= error.c event.c hash.c heap.c hex.c hmacsha.c +SRCS+= inet_aton.c lex.c log.c regex.c sockaddr.c SRCS+= task.c result.c parseint.c refcount.c region.c timer.c SRCS+= safe.c serial.c sha1.c sha2.c symtab.c diff --git a/usr.bin/dig/lib/isc/hmacmd5.c b/usr.bin/dig/lib/isc/hmacmd5.c deleted file mode 100644 index 5733701191f..00000000000 --- a/usr.bin/dig/lib/isc/hmacmd5.c +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (C) Internet Systems Consortium, Inc. ("ISC") - * - * Permission to use, copy, modify, and/or distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH - * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, - * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE - * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - * PERFORMANCE OF THIS SOFTWARE. - */ - -/* $Id: hmacmd5.c,v 1.1 2020/02/07 09:58:53 florian Exp $ */ - -/*! \file - * This code implements the HMAC-MD5 keyed hash algorithm - * described in RFC2104. - */ - - - - - diff --git a/usr.bin/dig/lib/isc/include/isc/hmacmd5.h b/usr.bin/dig/lib/isc/include/isc/hmacmd5.h deleted file mode 100644 index 7428c82f7cd..00000000000 --- a/usr.bin/dig/lib/isc/include/isc/hmacmd5.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (C) Internet Systems Consortium, Inc. ("ISC") - * - * Permission to use, copy, modify, and/or distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH - * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, - * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE - * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - * PERFORMANCE OF THIS SOFTWARE. - */ - -/* $Id: hmacmd5.h,v 1.1 2020/02/07 09:58:54 florian Exp $ */ - -/*! \file isc/hmacmd5.h - * \brief This is the header file for the HMAC-MD5 keyed hash algorithm - * described in RFC2104. - */ - -#ifndef ISC_HMACMD5_H -#define ISC_HMACMD5_H 1 - - - -#endif /* ISC_HMACMD5_H */ diff --git a/usr.bin/dig/lib/isc/include/isc/md5.h b/usr.bin/dig/lib/isc/include/isc/md5.h deleted file mode 100644 index 00f64a48644..00000000000 --- a/usr.bin/dig/lib/isc/include/isc/md5.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (C) Internet Systems Consortium, Inc. ("ISC") - * - * Permission to use, copy, modify, and/or distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH - * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, - * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE - * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - * PERFORMANCE OF THIS SOFTWARE. - */ - -/* $Id: md5.h,v 1.1 2020/02/07 09:58:54 florian Exp $ */ - -/*! \file isc/md5.h - * \brief This is the header file for the MD5 message-digest algorithm. - * - * The algorithm is due to Ron Rivest. This code was - * written by Colin Plumb in 1993, no copyright is claimed. - * This code is in the public domain; do with it what you wish. - * - * Equivalent code is available from RSA Data Security, Inc. - * This code has been tested against that, and is equivalent, - * except that you don't need to include two pages of legalese - * with every copy. - * - * To compute the message digest of a chunk of bytes, declare an - * MD5Context structure, pass it to MD5Init, call MD5Update as - * needed on buffers full of bytes, and then call MD5Final, which - * will fill a supplied 16-byte array with the digest. - * - * Changed so as no longer to depend on Colin Plumb's `usual.h' - * header definitions; now uses stuff from dpkg's config.h - * - Ian Jackson <ijackson@nyx.cs.du.edu>. - * Still in the public domain. - */ - -#ifndef ISC_MD5_H -#define ISC_MD5_H 1 - - - -#endif /* ISC_MD5_H */ diff --git a/usr.bin/dig/lib/isc/md5.c b/usr.bin/dig/lib/isc/md5.c deleted file mode 100644 index 531cf5c93a0..00000000000 --- a/usr.bin/dig/lib/isc/md5.c +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (C) Internet Systems Consortium, Inc. ("ISC") - * - * Permission to use, copy, modify, and/or distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH - * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, - * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE - * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - * PERFORMANCE OF THIS SOFTWARE. - */ - -/* $Id: md5.c,v 1.1 2020/02/07 09:58:54 florian Exp $ */ - -/*! \file - * This code implements the MD5 message-digest algorithm. - * The algorithm is due to Ron Rivest. This code was - * written by Colin Plumb in 1993, no copyright is claimed. - * This code is in the public domain; do with it what you wish. - * - * Equivalent code is available from RSA Data Security, Inc. - * This code has been tested against that, and is equivalent, - * except that you don't need to include two pages of legalese - * with every copy. - * - * To compute the message digest of a chunk of bytes, declare an - * MD5Context structure, pass it to MD5Init, call MD5Update as - * needed on buffers full of bytes, and then call MD5Final, which - * will fill a supplied 16-byte array with the digest. - */ - - - - - |
