summaryrefslogtreecommitdiff
path: root/sys/crypto
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2010-03-21 01:30:13 +0000
committerKen Smith <kensmith@FreeBSD.org>2010-03-21 01:30:13 +0000
commit9c4d1c1956ecb0a222fb2f4579c320391fb67f06 (patch)
treea9ac9b0e0ce25e6b0acc0f247dc4572d56ecc496 /sys/crypto
parent1c808b47a2787a3a6a6ee0ca2fffb39b8e17a29a (diff)
Diffstat (limited to 'sys/crypto')
-rw-r--r--sys/crypto/blowfish/arch/i386/bf_enc.S2
-rw-r--r--sys/crypto/blowfish/arch/i386/bf_enc_586.S2
-rw-r--r--sys/crypto/blowfish/arch/i386/bf_enc_686.S2
-rw-r--r--sys/crypto/blowfish/bf_ecb.c2
-rw-r--r--sys/crypto/blowfish/bf_enc.c2
-rw-r--r--sys/crypto/blowfish/bf_locl.h2
-rw-r--r--sys/crypto/blowfish/bf_pi.h2
-rw-r--r--sys/crypto/blowfish/bf_skey.c2
-rw-r--r--sys/crypto/blowfish/blowfish.h2
-rw-r--r--sys/crypto/camellia/camellia-api.c2
-rw-r--r--sys/crypto/camellia/camellia.c2
-rw-r--r--sys/crypto/camellia/camellia.h2
-rw-r--r--sys/crypto/des/arch/i386/des_enc.S2
-rw-r--r--sys/crypto/des/des.h2
-rw-r--r--sys/crypto/des/des_ecb.c2
-rw-r--r--sys/crypto/des/des_enc.c2
-rw-r--r--sys/crypto/des/des_locl.h2
-rw-r--r--sys/crypto/des/des_setkey.c2
-rw-r--r--sys/crypto/des/podd.h2
-rw-r--r--sys/crypto/des/sk.h2
-rw-r--r--sys/crypto/des/spr.h2
-rw-r--r--sys/crypto/rc4/rc4.c2
-rw-r--r--sys/crypto/rc4/rc4.h2
-rw-r--r--sys/crypto/rijndael/Makefile2
-rw-r--r--sys/crypto/rijndael/rijndael-alg-fst.c2
-rw-r--r--sys/crypto/rijndael/rijndael-api-fst.c2
-rw-r--r--sys/crypto/rijndael/rijndael-api-fst.h2
-rw-r--r--sys/crypto/rijndael/rijndael-api.c2
-rw-r--r--sys/crypto/rijndael/rijndael.h2
-rw-r--r--sys/crypto/rijndael/rijndael_local.h2
-rw-r--r--sys/crypto/rijndael/test00.c2
-rw-r--r--sys/crypto/sha1.c2
-rw-r--r--sys/crypto/sha1.h2
-rw-r--r--sys/crypto/sha2/sha2.c2
-rw-r--r--sys/crypto/sha2/sha2.h2
-rw-r--r--sys/crypto/via/padlock.c2
-rw-r--r--sys/crypto/via/padlock.h2
-rw-r--r--sys/crypto/via/padlock_cipher.c2
-rw-r--r--sys/crypto/via/padlock_hash.c2
39 files changed, 39 insertions, 39 deletions
diff --git a/sys/crypto/blowfish/arch/i386/bf_enc.S b/sys/crypto/blowfish/arch/i386/bf_enc.S
index bcee9c5423546..0319ef173c981 100644
--- a/sys/crypto/blowfish/arch/i386/bf_enc.S
+++ b/sys/crypto/blowfish/arch/i386/bf_enc.S
@@ -1,5 +1,5 @@
/* $NetBSD: bf_enc.S,v 1.1 2001/09/09 11:01:01 tls Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/blowfish/arch/i386/bf_enc.S,v 1.2.24.1 2010/02/10 00:26:20 kensmith Exp $ */
/*
* Written by Jason R. Thorpe <thorpej@zembu.com> and Thor Lancelot Simon
diff --git a/sys/crypto/blowfish/arch/i386/bf_enc_586.S b/sys/crypto/blowfish/arch/i386/bf_enc_586.S
index 680b2e5812e2a..4d7cc82e20a6b 100644
--- a/sys/crypto/blowfish/arch/i386/bf_enc_586.S
+++ b/sys/crypto/blowfish/arch/i386/bf_enc_586.S
@@ -1,5 +1,5 @@
/* $NetBSD: bf_enc_586.S,v 1.1 2001/09/09 11:01:01 tls Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/blowfish/arch/i386/bf_enc_586.S,v 1.2.36.1 2010/02/10 00:26:20 kensmith Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
diff --git a/sys/crypto/blowfish/arch/i386/bf_enc_686.S b/sys/crypto/blowfish/arch/i386/bf_enc_686.S
index e480e65790e54..dd8a7f3d2f217 100644
--- a/sys/crypto/blowfish/arch/i386/bf_enc_686.S
+++ b/sys/crypto/blowfish/arch/i386/bf_enc_686.S
@@ -1,5 +1,5 @@
/* $NetBSD: bf_enc_686.S,v 1.1 2001/09/09 11:01:02 tls Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/blowfish/arch/i386/bf_enc_686.S,v 1.1.40.1 2010/02/10 00:26:20 kensmith Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
diff --git a/sys/crypto/blowfish/bf_ecb.c b/sys/crypto/blowfish/bf_ecb.c
index a40c06e0c60ff..5028c4e8a10db 100644
--- a/sys/crypto/blowfish/bf_ecb.c
+++ b/sys/crypto/blowfish/bf_ecb.c
@@ -57,7 +57,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/blowfish/bf_ecb.c,v 1.1.34.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/types.h>
#include <crypto/blowfish/blowfish.h>
diff --git a/sys/crypto/blowfish/bf_enc.c b/sys/crypto/blowfish/bf_enc.c
index 5f26d408960a7..7b5725cb2fdd3 100644
--- a/sys/crypto/blowfish/bf_enc.c
+++ b/sys/crypto/blowfish/bf_enc.c
@@ -60,7 +60,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/blowfish/bf_enc.c,v 1.6.34.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/types.h>
#include <crypto/blowfish/blowfish.h>
diff --git a/sys/crypto/blowfish/bf_locl.h b/sys/crypto/blowfish/bf_locl.h
index 9314ff3c1459a..6527237038fcc 100644
--- a/sys/crypto/blowfish/bf_locl.h
+++ b/sys/crypto/blowfish/bf_locl.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/blowfish/bf_locl.h,v 1.5.38.1 2010/02/10 00:26:20 kensmith Exp $ */
/* $KAME: bf_locl.h,v 1.6 2001/09/10 04:03:56 itojun Exp $ */
/* crypto/bf/bf_local.h */
diff --git a/sys/crypto/blowfish/bf_pi.h b/sys/crypto/blowfish/bf_pi.h
index fdd5a27e914e8..00f7a8fed7dd3 100644
--- a/sys/crypto/blowfish/bf_pi.h
+++ b/sys/crypto/blowfish/bf_pi.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/blowfish/bf_pi.h,v 1.4.38.1 2010/02/10 00:26:20 kensmith Exp $ */
/* $KAME: bf_pi.h,v 1.4 2001/09/10 04:03:56 itojun Exp $ */
/* crypto/bf/bf_pi.h */
diff --git a/sys/crypto/blowfish/bf_skey.c b/sys/crypto/blowfish/bf_skey.c
index df8d1cf3d779a..5ab4dc71927cf 100644
--- a/sys/crypto/blowfish/bf_skey.c
+++ b/sys/crypto/blowfish/bf_skey.c
@@ -60,7 +60,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/blowfish/bf_skey.c,v 1.6.34.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/types.h>
#include <sys/time.h>
diff --git a/sys/crypto/blowfish/blowfish.h b/sys/crypto/blowfish/blowfish.h
index ecc140754bf9d..00810f068c3cf 100644
--- a/sys/crypto/blowfish/blowfish.h
+++ b/sys/crypto/blowfish/blowfish.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/blowfish/blowfish.h,v 1.7.34.1 2010/02/10 00:26:20 kensmith Exp $ */
/* $KAME: blowfish.h,v 1.12 2002/02/27 01:33:59 itojun Exp $ */
/* crypto/bf/blowfish.h */
diff --git a/sys/crypto/camellia/camellia-api.c b/sys/crypto/camellia/camellia-api.c
index 3226e0018ee21..62f1a2cd08520 100644
--- a/sys/crypto/camellia/camellia-api.c
+++ b/sys/crypto/camellia/camellia-api.c
@@ -24,7 +24,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/crypto/camellia/camellia-api.c,v 1.1.14.1 2010/02/10 00:26:20 kensmith Exp $
*/
#include <sys/cdefs.h>
diff --git a/sys/crypto/camellia/camellia.c b/sys/crypto/camellia/camellia.c
index a48c83f73a801..e11bc4f3005e2 100644
--- a/sys/crypto/camellia/camellia.c
+++ b/sys/crypto/camellia/camellia.c
@@ -24,7 +24,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/crypto/camellia/camellia.c,v 1.1.14.1 2010/02/10 00:26:20 kensmith Exp $
*/
/*
diff --git a/sys/crypto/camellia/camellia.h b/sys/crypto/camellia/camellia.h
index ab0ce57e88f19..2fdb72c5188e0 100644
--- a/sys/crypto/camellia/camellia.h
+++ b/sys/crypto/camellia/camellia.h
@@ -24,7 +24,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/crypto/camellia/camellia.h,v 1.1.14.1 2010/02/10 00:26:20 kensmith Exp $
*/
#ifndef _CAMELLIA_H
diff --git a/sys/crypto/des/arch/i386/des_enc.S b/sys/crypto/des/arch/i386/des_enc.S
index 7fc29e678a4cd..245645c975cb4 100644
--- a/sys/crypto/des/arch/i386/des_enc.S
+++ b/sys/crypto/des/arch/i386/des_enc.S
@@ -1,5 +1,5 @@
/* $NetBSD: des_enc.S,v 1.1 2001/09/09 11:01:02 tls Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/des/arch/i386/des_enc.S,v 1.2.36.1 2010/02/10 00:26:20 kensmith Exp $ */
/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
* All rights reserved.
diff --git a/sys/crypto/des/des.h b/sys/crypto/des/des.h
index 81c7bfbeef5e6..c47dd4b4e2d40 100644
--- a/sys/crypto/des/des.h
+++ b/sys/crypto/des/des.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/des/des.h,v 1.6.38.1 2010/02/10 00:26:20 kensmith Exp $ */
/* $KAME: des.h,v 1.8 2001/09/10 04:03:57 itojun Exp $ */
/* lib/des/des.h */
diff --git a/sys/crypto/des/des_ecb.c b/sys/crypto/des/des_ecb.c
index 87a004af4b4d6..39b93ee2de297 100644
--- a/sys/crypto/des/des_ecb.c
+++ b/sys/crypto/des/des_ecb.c
@@ -49,7 +49,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/des/des_ecb.c,v 1.6.32.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/crypto/des/des_enc.c b/sys/crypto/des/des_enc.c
index c8d484a0d48cb..36876710b4645 100644
--- a/sys/crypto/des/des_enc.c
+++ b/sys/crypto/des/des_enc.c
@@ -60,7 +60,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/des/des_enc.c,v 1.2.32.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/types.h>
#include <crypto/des/des_locl.h>
diff --git a/sys/crypto/des/des_locl.h b/sys/crypto/des/des_locl.h
index 2c3cacc1b4996..f34d8913ec5f2 100644
--- a/sys/crypto/des/des_locl.h
+++ b/sys/crypto/des/des_locl.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/des/des_locl.h,v 1.6.38.1 2010/02/10 00:26:20 kensmith Exp $ */
/* $KAME: des_locl.h,v 1.7 2001/09/10 04:03:58 itojun Exp $ */
/* crypto/des/des_locl.h */
diff --git a/sys/crypto/des/des_setkey.c b/sys/crypto/des/des_setkey.c
index 7d1fb506a22d4..aebf11ea34266 100644
--- a/sys/crypto/des/des_setkey.c
+++ b/sys/crypto/des/des_setkey.c
@@ -57,7 +57,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/des/des_setkey.c,v 1.7.32.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/crypto/des/podd.h b/sys/crypto/des/podd.h
index 0528b9cecafc0..a225412fb6408 100644
--- a/sys/crypto/des/podd.h
+++ b/sys/crypto/des/podd.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/des/podd.h,v 1.4.38.1 2010/02/10 00:26:20 kensmith Exp $ */
/* $KAME: podd.h,v 1.4 2001/09/10 04:03:58 itojun Exp $ */
/* crypto/des/podd.h */
diff --git a/sys/crypto/des/sk.h b/sys/crypto/des/sk.h
index d4aa375024d7a..c2618e0571086 100644
--- a/sys/crypto/des/sk.h
+++ b/sys/crypto/des/sk.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/des/sk.h,v 1.4.38.1 2010/02/10 00:26:20 kensmith Exp $ */
/* $KAME: sk.h,v 1.4 2001/09/10 04:03:58 itojun Exp $ */
/* crypto/des/sk.h */
diff --git a/sys/crypto/des/spr.h b/sys/crypto/des/spr.h
index 129b8277be3fa..5a9aca066ad19 100644
--- a/sys/crypto/des/spr.h
+++ b/sys/crypto/des/spr.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/des/spr.h,v 1.4.38.1 2010/02/10 00:26:20 kensmith Exp $ */
/* $KAME: spr.h,v 1.4 2001/09/10 04:03:58 itojun Exp $ */
/* crypto/des/spr.h */
diff --git a/sys/crypto/rc4/rc4.c b/sys/crypto/rc4/rc4.c
index dbdbd7af6aa0a..728b2e0d4f323 100644
--- a/sys/crypto/rc4/rc4.c
+++ b/sys/crypto/rc4/rc4.c
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/rc4/rc4.c,v 1.5.20.1.4.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
diff --git a/sys/crypto/rc4/rc4.h b/sys/crypto/rc4/rc4.h
index 670b1a005ba17..2f186802116f2 100644
--- a/sys/crypto/rc4/rc4.h
+++ b/sys/crypto/rc4/rc4.h
@@ -34,7 +34,7 @@
* THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/crypto/rc4/rc4.h,v 1.3.38.1 2010/02/10 00:26:20 kensmith Exp $
*/
#ifndef _SYS_CRYPTO_RC4_RC4_H_
diff --git a/sys/crypto/rijndael/Makefile b/sys/crypto/rijndael/Makefile
index d2dc35ea94bf5..7065f2cc97264 100644
--- a/sys/crypto/rijndael/Makefile
+++ b/sys/crypto/rijndael/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/sys/crypto/rijndael/Makefile,v 1.3.24.1 2010/02/10 00:26:20 kensmith Exp $
PROG=test00
NO_MAN=
diff --git a/sys/crypto/rijndael/rijndael-alg-fst.c b/sys/crypto/rijndael/rijndael-alg-fst.c
index 5197e226a26e1..278520363e3dc 100644
--- a/sys/crypto/rijndael/rijndael-alg-fst.c
+++ b/sys/crypto/rijndael/rijndael-alg-fst.c
@@ -25,7 +25,7 @@
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/rijndael/rijndael-alg-fst.c,v 1.11.12.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/cdefs.h>
#include <sys/types.h>
diff --git a/sys/crypto/rijndael/rijndael-api-fst.c b/sys/crypto/rijndael/rijndael-api-fst.c
index 187177b39fffe..930e82be49e7a 100644
--- a/sys/crypto/rijndael/rijndael-api-fst.c
+++ b/sys/crypto/rijndael/rijndael-api-fst.c
@@ -16,7 +16,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/rijndael/rijndael-api-fst.c,v 1.12.24.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/param.h>
#ifdef _KERNEL
diff --git a/sys/crypto/rijndael/rijndael-api-fst.h b/sys/crypto/rijndael/rijndael-api-fst.h
index 122bf52d6ce21..8a0e776c3a925 100644
--- a/sys/crypto/rijndael/rijndael-api-fst.h
+++ b/sys/crypto/rijndael/rijndael-api-fst.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/rijndael/rijndael-api-fst.h,v 1.7.24.1 2010/02/10 00:26:20 kensmith Exp $ */
/* $KAME: rijndael-api-fst.h,v 1.6 2001/05/27 00:23:23 itojun Exp $ */
/*
diff --git a/sys/crypto/rijndael/rijndael-api.c b/sys/crypto/rijndael/rijndael-api.c
index 9a7fda30af604..17016cfbf2674 100644
--- a/sys/crypto/rijndael/rijndael-api.c
+++ b/sys/crypto/rijndael/rijndael-api.c
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/rijndael/rijndael-api.c,v 1.1.32.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/types.h>
#include <sys/systm.h>
diff --git a/sys/crypto/rijndael/rijndael.h b/sys/crypto/rijndael/rijndael.h
index da855284dcc54..4f77ef08315fc 100644
--- a/sys/crypto/rijndael/rijndael.h
+++ b/sys/crypto/rijndael/rijndael.h
@@ -1,5 +1,5 @@
/* $KAME: rijndael.h,v 1.6 2003/08/28 08:36:32 itojun Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/rijndael/rijndael.h,v 1.6.24.1 2010/02/10 00:26:20 kensmith Exp $ */
/**
* rijndael-alg-fst.h
diff --git a/sys/crypto/rijndael/rijndael_local.h b/sys/crypto/rijndael/rijndael_local.h
index 7c765a2b11f8d..224991e865697 100644
--- a/sys/crypto/rijndael/rijndael_local.h
+++ b/sys/crypto/rijndael/rijndael_local.h
@@ -1,5 +1,5 @@
/* $KAME: rijndael_local.h,v 1.5 2003/08/28 08:37:24 itojun Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/rijndael/rijndael_local.h,v 1.4.34.1 2010/02/10 00:26:20 kensmith Exp $ */
/* the file should not be used from outside */
typedef u_int8_t u8;
diff --git a/sys/crypto/rijndael/test00.c b/sys/crypto/rijndael/test00.c
index f7a534a0cfa28..25ec495bbae43 100644
--- a/sys/crypto/rijndael/test00.c
+++ b/sys/crypto/rijndael/test00.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/crypto/rijndael/test00.c,v 1.1.32.1 2010/02/10 00:26:20 kensmith Exp $
*
* This test checks for inplace decryption working. This is the case
* where the same buffer is passed as input and output to
diff --git a/sys/crypto/sha1.c b/sys/crypto/sha1.c
index 208789ab13392..862b99c19622a 100644
--- a/sys/crypto/sha1.c
+++ b/sys/crypto/sha1.c
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/sha1.c,v 1.9.34.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/types.h>
#include <sys/cdefs.h>
diff --git a/sys/crypto/sha1.h b/sys/crypto/sha1.h
index 3686d7ddde519..36173d5b37b87 100644
--- a/sys/crypto/sha1.h
+++ b/sys/crypto/sha1.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/sha1.h,v 1.8.38.1 2010/02/10 00:26:20 kensmith Exp $ */
/* $KAME: sha1.h,v 1.5 2000/03/27 04:36:23 sumikawa Exp $ */
/*
diff --git a/sys/crypto/sha2/sha2.c b/sys/crypto/sha2/sha2.c
index ed33b662db87d..bff342289e0e8 100644
--- a/sys/crypto/sha2/sha2.c
+++ b/sys/crypto/sha2/sha2.c
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/sha2/sha2.c,v 1.9.12.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/types.h>
#include <sys/time.h>
diff --git a/sys/crypto/sha2/sha2.h b/sys/crypto/sha2/sha2.h
index 12da95c92bdad..9aa693388bc1f 100644
--- a/sys/crypto/sha2/sha2.h
+++ b/sys/crypto/sha2/sha2.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/crypto/sha2/sha2.h,v 1.2.38.1 2010/02/10 00:26:20 kensmith Exp $ */
/* $KAME: sha2.h,v 1.3 2001/03/12 08:27:48 itojun Exp $ */
/*
diff --git a/sys/crypto/via/padlock.c b/sys/crypto/via/padlock.c
index f219c17bea072..34d2d63a73d84 100644
--- a/sys/crypto/via/padlock.c
+++ b/sys/crypto/via/padlock.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/via/padlock.c,v 1.13.2.1.2.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/crypto/via/padlock.h b/sys/crypto/via/padlock.h
index 7d928ba1719c1..36873a98ea74c 100644
--- a/sys/crypto/via/padlock.h
+++ b/sys/crypto/via/padlock.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/crypto/via/padlock.h,v 1.4.14.1 2010/02/10 00:26:20 kensmith Exp $
*/
#ifndef _PADLOCK_H_
diff --git a/sys/crypto/via/padlock_cipher.c b/sys/crypto/via/padlock_cipher.c
index 8195584c71e7b..68be25830a94c 100644
--- a/sys/crypto/via/padlock_cipher.c
+++ b/sys/crypto/via/padlock_cipher.c
@@ -45,7 +45,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/via/padlock_cipher.c,v 1.5.12.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/crypto/via/padlock_hash.c b/sys/crypto/via/padlock_hash.c
index 71f956e529080..a98ef78d7ebaa 100644
--- a/sys/crypto/via/padlock_hash.c
+++ b/sys/crypto/via/padlock_hash.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/crypto/via/padlock_hash.c,v 1.2.4.2.2.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/param.h>
#include <sys/systm.h>