Use __FBSDID().
This commit is contained in:
parent
ab0de15baf
commit
2c44651495
@ -1,6 +1,4 @@
|
|||||||
/* $FreeBSD$ */
|
|
||||||
/* $OpenBSD: cast.c,v 1.2 2000/06/06 06:49:47 deraadt Exp $ */
|
/* $OpenBSD: cast.c,v 1.2 2000/06/06 06:49:47 deraadt Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* CAST-128 in C
|
* CAST-128 in C
|
||||||
* Written by Steve Reid <sreid@sea-to-sky.net>
|
* Written by Steve Reid <sreid@sea-to-sky.net>
|
||||||
@ -8,6 +6,9 @@
|
|||||||
* Released 1997.10.11
|
* Released 1997.10.11
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <opencrypto/cast.h>
|
#include <opencrypto/cast.h>
|
||||||
#include <opencrypto/castsb.h>
|
#include <opencrypto/castsb.h>
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* $FreeBSD$ */
|
|
||||||
/* $OpenBSD: criov.c,v 1.9 2002/01/29 15:48:29 jason Exp $ */
|
/* $OpenBSD: criov.c,v 1.9 2002/01/29 15:48:29 jason Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -28,6 +27,9 @@
|
|||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/proc.h>
|
#include <sys/proc.h>
|
||||||
|
@ -28,10 +28,11 @@
|
|||||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
* 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
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
|
||||||
* $FreeBSD$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include "opt_param.h"
|
#include "opt_param.h"
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* $FreeBSD$ */
|
|
||||||
/* $OpenBSD: crypto.c,v 1.38 2002/06/11 11:14:29 beck Exp $ */
|
/* $OpenBSD: crypto.c,v 1.38 2002/06/11 11:14:29 beck Exp $ */
|
||||||
/*
|
/*
|
||||||
* The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu)
|
* The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu)
|
||||||
@ -20,6 +19,10 @@
|
|||||||
* MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
|
* MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
|
||||||
* PURPOSE.
|
* PURPOSE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#define CRYPTO_TIMING /* enable timing support */
|
#define CRYPTO_TIMING /* enable timing support */
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* $FreeBSD$ */
|
|
||||||
/* $OpenBSD: cryptodev.c,v 1.52 2002/06/19 07:22:46 deraadt Exp $ */
|
/* $OpenBSD: cryptodev.c,v 1.52 2002/06/19 07:22:46 deraadt Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -30,9 +29,11 @@
|
|||||||
* Effort sponsored in part by the Defense Advanced Research Projects
|
* Effort sponsored in part by the Defense Advanced Research Projects
|
||||||
* Agency (DARPA) and Air Force Research Laboratory, Air Force
|
* Agency (DARPA) and Air Force Research Laboratory, Air Force
|
||||||
* Materiel Command, USAF, under agreement number F30602-01-2-0537.
|
* Materiel Command, USAF, under agreement number F30602-01-2-0537.
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/malloc.h>
|
#include <sys/malloc.h>
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* $FreeBSD$ */
|
|
||||||
/* $OpenBSD: cryptosoft.c,v 1.35 2002/04/26 08:43:50 deraadt Exp $ */
|
/* $OpenBSD: cryptosoft.c,v 1.35 2002/04/26 08:43:50 deraadt Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -22,6 +21,9 @@
|
|||||||
* PURPOSE.
|
* PURPOSE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/malloc.h>
|
#include <sys/malloc.h>
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* $FreeBSD$ */
|
|
||||||
/* $OpenBSD: deflate.c,v 1.3 2001/08/20 02:45:22 hugh Exp $ */
|
/* $OpenBSD: deflate.c,v 1.3 2001/08/20 02:45:22 hugh Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -33,6 +32,9 @@
|
|||||||
* functions using the zlib library (see net/zlib.{c,h})
|
* functions using the zlib library (see net/zlib.{c,h})
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/malloc.h>
|
#include <sys/malloc.h>
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/* $FreeBSD$ */
|
|
||||||
/* $OpenBSD: rijndael.c,v 1.12 2002/07/10 17:53:54 deraadt Exp $ */
|
/* $OpenBSD: rijndael.c,v 1.12 2002/07/10 17:53:54 deraadt Exp $ */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* rijndael-alg-fst.c
|
* rijndael-alg-fst.c
|
||||||
*
|
*
|
||||||
@ -27,6 +25,9 @@
|
|||||||
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* $FreeBSD$ */
|
|
||||||
/* $OpenBSD: rmd160.c,v 1.3 2001/09/26 21:40:13 markus Exp $ */
|
/* $OpenBSD: rmd160.c,v 1.3 2001/09/26 21:40:13 markus Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2001 Markus Friedl. All rights reserved.
|
* Copyright (c) 2001 Markus Friedl. All rights reserved.
|
||||||
@ -23,11 +22,16 @@
|
|||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Preneel, Bosselaers, Dobbertin, "The Cryptographic Hash Function RIPEMD-160",
|
* Preneel, Bosselaers, Dobbertin, "The Cryptographic Hash Function RIPEMD-160",
|
||||||
* RSA Laboratories, CryptoBytes, Volume 3, Number 2, Autumn 1997,
|
* RSA Laboratories, CryptoBytes, Volume 3, Number 2, Autumn 1997,
|
||||||
* ftp://ftp.rsasecurity.com/pub/cryptobytes/crypto3n2.pdf
|
* ftp://ftp.rsasecurity.com/pub/cryptobytes/crypto3n2.pdf
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/endian.h>
|
#include <sys/endian.h>
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/* $FreeBSD$ */
|
|
||||||
/* $OpenBSD: skipjack.c,v 1.3 2001/05/05 00:31:34 angelos Exp $ */
|
/* $OpenBSD: skipjack.c,v 1.3 2001/05/05 00:31:34 angelos Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Further optimized test implementation of SKIPJACK algorithm
|
* Further optimized test implementation of SKIPJACK algorithm
|
||||||
* Mark Tillotson <markt@chaos.org.uk>, 25 June 98
|
* Mark Tillotson <markt@chaos.org.uk>, 25 June 98
|
||||||
@ -14,6 +12,9 @@
|
|||||||
* 29 May 1998
|
* 29 May 1998
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
|
||||||
#include <opencrypto/skipjack.h>
|
#include <opencrypto/skipjack.h>
|
||||||
@ -62,6 +63,7 @@ static const u_int8_t ftable[0x100] =
|
|||||||
* the tables are hopefully pointed to by register allocated variables
|
* the tables are hopefully pointed to by register allocated variables
|
||||||
* k0, k1..k9
|
* k0, k1..k9
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
void
|
||||||
subkey_table_gen (u_int8_t *key, u_int8_t **key_tables)
|
subkey_table_gen (u_int8_t *key, u_int8_t **key_tables)
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* $FreeBSD$ */
|
|
||||||
/* $OpenBSD: xform.c,v 1.16 2001/08/28 12:20:43 ben Exp $ */
|
/* $OpenBSD: xform.c,v 1.16 2001/08/28 12:20:43 ben Exp $ */
|
||||||
/*
|
/*
|
||||||
* The authors of this code are John Ioannidis (ji@tla.org),
|
* The authors of this code are John Ioannidis (ji@tla.org),
|
||||||
@ -37,6 +36,9 @@
|
|||||||
* PURPOSE.
|
* PURPOSE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/malloc.h>
|
#include <sys/malloc.h>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user