aboutsummaryrefslogtreecommitdiff
path: root/sys/opencrypto
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2023-08-16 17:54:36 +0000
committerWarner Losh <imp@FreeBSD.org>2023-08-16 17:54:36 +0000
commit685dc743dc3b5645e34836464128e1c0558b404b (patch)
tree39ec624f59d1c16f70e670cb77f8a87ec8a2b30a /sys/opencrypto
parente5d258c9e599d2b2fe642e678091cac5da8a10d1 (diff)
sys: Remove $FreeBSD$: one-line .c pattern
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
Diffstat (limited to 'sys/opencrypto')
-rw-r--r--sys/opencrypto/cbc_mac.c2
-rw-r--r--sys/opencrypto/criov.c2
-rw-r--r--sys/opencrypto/crypto.c2
-rw-r--r--sys/opencrypto/cryptodeflate.c2
-rw-r--r--sys/opencrypto/cryptodev.c2
-rw-r--r--sys/opencrypto/cryptosoft.c2
-rw-r--r--sys/opencrypto/ktls_ocf.c2
-rw-r--r--sys/opencrypto/rmd160.c2
-rw-r--r--sys/opencrypto/xform_aes_cbc.c2
-rw-r--r--sys/opencrypto/xform_aes_icm.c2
-rw-r--r--sys/opencrypto/xform_aes_xts.c2
-rw-r--r--sys/opencrypto/xform_cbc_mac.c2
-rw-r--r--sys/opencrypto/xform_cml.c2
-rw-r--r--sys/opencrypto/xform_deflate.c2
-rw-r--r--sys/opencrypto/xform_gmac.c2
-rw-r--r--sys/opencrypto/xform_null.c2
-rw-r--r--sys/opencrypto/xform_poly1305.c2
-rw-r--r--sys/opencrypto/xform_rmd160.c2
-rw-r--r--sys/opencrypto/xform_sha1.c2
-rw-r--r--sys/opencrypto/xform_sha2.c2
20 files changed, 0 insertions, 40 deletions
diff --git a/sys/opencrypto/cbc_mac.c b/sys/opencrypto/cbc_mac.c
index cfba24eeab31..ed9230beaf49 100644
--- a/sys/opencrypto/cbc_mac.c
+++ b/sys/opencrypto/cbc_mac.c
@@ -23,8 +23,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <sys/systm.h>
#include <sys/param.h>
diff --git a/sys/opencrypto/criov.c b/sys/opencrypto/criov.c
index c1bd4919ec5c..f17919bee706 100644
--- a/sys/opencrypto/criov.c
+++ b/sys/opencrypto/criov.c
@@ -28,8 +28,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
diff --git a/sys/opencrypto/crypto.c b/sys/opencrypto/crypto.c
index 75d00ccb9832..e840d514fcd5 100644
--- a/sys/opencrypto/crypto.c
+++ b/sys/opencrypto/crypto.c
@@ -27,8 +27,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
/*
* Cryptographic Subsystem.
*
diff --git a/sys/opencrypto/cryptodeflate.c b/sys/opencrypto/cryptodeflate.c
index b945733a9ce5..58fff6732423 100644
--- a/sys/opencrypto/cryptodeflate.c
+++ b/sys/opencrypto/cryptodeflate.c
@@ -33,8 +33,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <sys/param.h>
#include <sys/malloc.h>
diff --git a/sys/opencrypto/cryptodev.c b/sys/opencrypto/cryptodev.c
index 45003691f2e6..118f043d4aec 100644
--- a/sys/opencrypto/cryptodev.c
+++ b/sys/opencrypto/cryptodev.c
@@ -42,8 +42,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
diff --git a/sys/opencrypto/cryptosoft.c b/sys/opencrypto/cryptosoft.c
index 0eb5bc420886..972060c198a9 100644
--- a/sys/opencrypto/cryptosoft.c
+++ b/sys/opencrypto/cryptosoft.c
@@ -32,8 +32,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
diff --git a/sys/opencrypto/ktls_ocf.c b/sys/opencrypto/ktls_ocf.c
index 25d50adba5ca..0b9a07a9c83e 100644
--- a/sys/opencrypto/ktls_ocf.c
+++ b/sys/opencrypto/ktls_ocf.c
@@ -26,8 +26,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/counter.h>
diff --git a/sys/opencrypto/rmd160.c b/sys/opencrypto/rmd160.c
index 0ca23649113d..ca091a9ef067 100644
--- a/sys/opencrypto/rmd160.c
+++ b/sys/opencrypto/rmd160.c
@@ -30,8 +30,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/endian.h>
diff --git a/sys/opencrypto/xform_aes_cbc.c b/sys/opencrypto/xform_aes_cbc.c
index 833a792d0f76..e76fa6554bbf 100644
--- a/sys/opencrypto/xform_aes_cbc.c
+++ b/sys/opencrypto/xform_aes_cbc.c
@@ -48,8 +48,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <crypto/rijndael/rijndael.h>
#include <opencrypto/xform_enc.h>
diff --git a/sys/opencrypto/xform_aes_icm.c b/sys/opencrypto/xform_aes_icm.c
index d25e4545c3ab..648a270ab252 100644
--- a/sys/opencrypto/xform_aes_icm.c
+++ b/sys/opencrypto/xform_aes_icm.c
@@ -48,8 +48,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <opencrypto/cbc_mac.h>
#include <opencrypto/gmac.h>
#include <opencrypto/xform_enc.h>
diff --git a/sys/opencrypto/xform_aes_xts.c b/sys/opencrypto/xform_aes_xts.c
index eda17780db98..c97313f60236 100644
--- a/sys/opencrypto/xform_aes_xts.c
+++ b/sys/opencrypto/xform_aes_xts.c
@@ -48,8 +48,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <sys/systm.h>
#include <opencrypto/xform_enc.h>
diff --git a/sys/opencrypto/xform_cbc_mac.c b/sys/opencrypto/xform_cbc_mac.c
index d55e66e45255..c3447de3ebe3 100644
--- a/sys/opencrypto/xform_cbc_mac.c
+++ b/sys/opencrypto/xform_cbc_mac.c
@@ -1,6 +1,4 @@
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <opencrypto/cbc_mac.h>
#include <opencrypto/xform_auth.h>
diff --git a/sys/opencrypto/xform_cml.c b/sys/opencrypto/xform_cml.c
index 970e0fd6aa76..31c508ebc653 100644
--- a/sys/opencrypto/xform_cml.c
+++ b/sys/opencrypto/xform_cml.c
@@ -48,8 +48,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <crypto/camellia/camellia.h>
#include <opencrypto/xform_enc.h>
diff --git a/sys/opencrypto/xform_deflate.c b/sys/opencrypto/xform_deflate.c
index b7b81c332bb4..f4e3b5e4dfed 100644
--- a/sys/opencrypto/xform_deflate.c
+++ b/sys/opencrypto/xform_deflate.c
@@ -48,8 +48,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <opencrypto/deflate.h>
#include <opencrypto/xform_comp.h>
diff --git a/sys/opencrypto/xform_gmac.c b/sys/opencrypto/xform_gmac.c
index 3e53065c5dff..152158cf8b6d 100644
--- a/sys/opencrypto/xform_gmac.c
+++ b/sys/opencrypto/xform_gmac.c
@@ -48,8 +48,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <opencrypto/gmac.h>
#include <opencrypto/xform_auth.h>
#include <opencrypto/xform_enc.h>
diff --git a/sys/opencrypto/xform_null.c b/sys/opencrypto/xform_null.c
index e8741cbe6366..42a9a6c6d9ec 100644
--- a/sys/opencrypto/xform_null.c
+++ b/sys/opencrypto/xform_null.c
@@ -48,8 +48,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <opencrypto/xform_auth.h>
#include <opencrypto/xform_enc.h>
diff --git a/sys/opencrypto/xform_poly1305.c b/sys/opencrypto/xform_poly1305.c
index 5620c2c42d7d..7a20e4e10c14 100644
--- a/sys/opencrypto/xform_poly1305.c
+++ b/sys/opencrypto/xform_poly1305.c
@@ -1,8 +1,6 @@
/* This file is in the public domain. */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <opencrypto/xform_auth.h>
#include <sodium/crypto_onetimeauth_poly1305.h>
diff --git a/sys/opencrypto/xform_rmd160.c b/sys/opencrypto/xform_rmd160.c
index bb11de4da5ea..ddf988fe6913 100644
--- a/sys/opencrypto/xform_rmd160.c
+++ b/sys/opencrypto/xform_rmd160.c
@@ -48,8 +48,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <opencrypto/rmd160.h>
#include <opencrypto/xform_auth.h>
diff --git a/sys/opencrypto/xform_sha1.c b/sys/opencrypto/xform_sha1.c
index c36ba467ce8e..0bf737ed8cb5 100644
--- a/sys/opencrypto/xform_sha1.c
+++ b/sys/opencrypto/xform_sha1.c
@@ -48,8 +48,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <crypto/sha1.h>
#include <opencrypto/xform_auth.h>
diff --git a/sys/opencrypto/xform_sha2.c b/sys/opencrypto/xform_sha2.c
index c1b55247b227..a2359efc2348 100644
--- a/sys/opencrypto/xform_sha2.c
+++ b/sys/opencrypto/xform_sha2.c
@@ -48,8 +48,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <crypto/sha2/sha224.h>
#include <crypto/sha2/sha256.h>