aboutsummaryrefslogtreecommitdiff
path: root/sys/crypto
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/crypto
parente5d258c9e599d2b2fe642e678091cac5da8a10d1 (diff)
downloadsrc-685dc743dc3b5645e34836464128e1c0558b404b.tar.gz
src-685dc743dc3b5645e34836464128e1c0558b404b.zip
Diffstat (limited to 'sys/crypto')
-rw-r--r--sys/crypto/aesni/aesni.c2
-rw-r--r--sys/crypto/aesni/aesni_wrap.c2
-rw-r--r--sys/crypto/aesni/intel_sha1.c2
-rw-r--r--sys/crypto/aesni/intel_sha256.c2
-rw-r--r--sys/crypto/armv8/armv8_crypto.c2
-rw-r--r--sys/crypto/armv8/armv8_crypto_wrap.c2
-rw-r--r--sys/crypto/blake2/blake2-sw.c2
-rw-r--r--sys/crypto/blake2/blake2_cryptodev.c2
-rw-r--r--sys/crypto/ccp/ccp.c2
-rw-r--r--sys/crypto/ccp/ccp_hardware.c2
-rw-r--r--sys/crypto/ccp/ccp_lsb.c2
-rw-r--r--sys/crypto/chacha20/chacha-sw.c2
-rw-r--r--sys/crypto/chacha20/chacha.c2
-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_setkey.c2
-rw-r--r--sys/crypto/libsodium/randombytes.c1
-rw-r--r--sys/crypto/libsodium/utils.c1
-rw-r--r--sys/crypto/openssl/ossl.c2
-rw-r--r--sys/crypto/openssl/ossl_aes.c2
-rw-r--r--sys/crypto/openssl/ossl_sha1.c2
-rw-r--r--sys/crypto/openssl/ossl_sha256.c2
-rw-r--r--sys/crypto/openssl/ossl_sha512.c2
-rw-r--r--sys/crypto/rc4/rc4.c2
-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.c2
-rw-r--r--sys/crypto/sha1.c2
-rw-r--r--sys/crypto/sha2/sha256c.c2
-rw-r--r--sys/crypto/sha2/sha256c_arm64.c2
-rw-r--r--sys/crypto/sha2/sha512c.c2
-rw-r--r--sys/crypto/sha2/sha512c_arm64.c2
-rw-r--r--sys/crypto/siphash/siphash.c2
-rw-r--r--sys/crypto/siphash/siphash_test.c2
-rw-r--r--sys/crypto/skein/skein.c2
-rw-r--r--sys/crypto/skein/skein_block.c2
-rw-r--r--sys/crypto/via/padlock.c2
-rw-r--r--sys/crypto/via/padlock_cipher.c2
-rw-r--r--sys/crypto/via/padlock_hash.c2
39 files changed, 0 insertions, 76 deletions
diff --git a/sys/crypto/aesni/aesni.c b/sys/crypto/aesni/aesni.c
index aa7a5702713a..60e4a6e0f2fc 100644
--- a/sys/crypto/aesni/aesni.c
+++ b/sys/crypto/aesni/aesni.c
@@ -35,8 +35,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/bus.h>
#include <sys/kernel.h>
diff --git a/sys/crypto/aesni/aesni_wrap.c b/sys/crypto/aesni/aesni_wrap.c
index cca69d3d5c96..b3174de6d4b6 100644
--- a/sys/crypto/aesni/aesni_wrap.c
+++ b/sys/crypto/aesni/aesni_wrap.c
@@ -33,8 +33,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/libkern.h>
#include <sys/malloc.h>
diff --git a/sys/crypto/aesni/intel_sha1.c b/sys/crypto/aesni/intel_sha1.c
index e9e1836f8871..846484b7da09 100644
--- a/sys/crypto/aesni/intel_sha1.c
+++ b/sys/crypto/aesni/intel_sha1.c
@@ -56,8 +56,6 @@
*
*******************************************************************************/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <crypto/aesni/aesni_os.h>
#include <crypto/aesni/sha_sse.h>
diff --git a/sys/crypto/aesni/intel_sha256.c b/sys/crypto/aesni/intel_sha256.c
index 06636ccd4986..7e05eadea7f9 100644
--- a/sys/crypto/aesni/intel_sha256.c
+++ b/sys/crypto/aesni/intel_sha256.c
@@ -56,8 +56,6 @@
*
*******************************************************************************/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <crypto/aesni/aesni_os.h>
#include <crypto/aesni/sha_sse.h>
diff --git a/sys/crypto/armv8/armv8_crypto.c b/sys/crypto/armv8/armv8_crypto.c
index 7c365c6a6901..a1a9d4dfcdcd 100644
--- a/sys/crypto/armv8/armv8_crypto.c
+++ b/sys/crypto/armv8/armv8_crypto.c
@@ -39,8 +39,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/crypto/armv8/armv8_crypto_wrap.c b/sys/crypto/armv8/armv8_crypto_wrap.c
index c511560558ab..8366c247889c 100644
--- a/sys/crypto/armv8/armv8_crypto_wrap.c
+++ b/sys/crypto/armv8/armv8_crypto_wrap.c
@@ -41,8 +41,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
diff --git a/sys/crypto/blake2/blake2-sw.c b/sys/crypto/blake2/blake2-sw.c
index dafe0e3f84a4..93bbf7488be1 100644
--- a/sys/crypto/blake2/blake2-sw.c
+++ b/sys/crypto/blake2/blake2-sw.c
@@ -1,8 +1,6 @@
/* This file is in the public domain. */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <contrib/libb2/blake2.h>
#include <opencrypto/xform_auth.h>
diff --git a/sys/crypto/blake2/blake2_cryptodev.c b/sys/crypto/blake2/blake2_cryptodev.c
index ebc3c2fcec96..77f7abaefcf8 100644
--- a/sys/crypto/blake2/blake2_cryptodev.c
+++ b/sys/crypto/blake2/blake2_cryptodev.c
@@ -25,8 +25,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/bus.h>
#include <sys/kernel.h>
diff --git a/sys/crypto/ccp/ccp.c b/sys/crypto/ccp/ccp.c
index 16d83c65bc59..7db9a27ab059 100644
--- a/sys/crypto/ccp/ccp.c
+++ b/sys/crypto/ccp/ccp.c
@@ -29,8 +29,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include "opt_ddb.h"
#include <sys/param.h>
diff --git a/sys/crypto/ccp/ccp_hardware.c b/sys/crypto/ccp/ccp_hardware.c
index df98e1f2ae2a..497f80dbd676 100644
--- a/sys/crypto/ccp/ccp_hardware.c
+++ b/sys/crypto/ccp/ccp_hardware.c
@@ -29,8 +29,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include "opt_ddb.h"
#include <sys/param.h>
diff --git a/sys/crypto/ccp/ccp_lsb.c b/sys/crypto/ccp/ccp_lsb.c
index 0176b9c295b9..e50ef65bfbd0 100644
--- a/sys/crypto/ccp/ccp_lsb.c
+++ b/sys/crypto/ccp/ccp_lsb.c
@@ -27,8 +27,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <sys/bus.h>
#include <sys/malloc.h>
diff --git a/sys/crypto/chacha20/chacha-sw.c b/sys/crypto/chacha20/chacha-sw.c
index 773ea9425b0a..8f4db8c685d9 100644
--- a/sys/crypto/chacha20/chacha-sw.c
+++ b/sys/crypto/chacha20/chacha-sw.c
@@ -1,8 +1,6 @@
/* This file is in the public domain. */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <crypto/chacha20/chacha.h>
#include <opencrypto/xform_enc.h>
diff --git a/sys/crypto/chacha20/chacha.c b/sys/crypto/chacha20/chacha.c
index c0458dcd5b22..e22c348d14bd 100644
--- a/sys/crypto/chacha20/chacha.c
+++ b/sys/crypto/chacha20/chacha.c
@@ -7,8 +7,6 @@ Public domain.
/* $OpenBSD: chacha.c,v 1.1 2013/11/21 00:45:44 djm Exp $ */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/types.h>
diff --git a/sys/crypto/des/des_ecb.c b/sys/crypto/des/des_ecb.c
index 5034b6c5ea91..d91304d86669 100644
--- a/sys/crypto/des/des_ecb.c
+++ b/sys/crypto/des/des_ecb.c
@@ -49,8 +49,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <crypto/des/des_locl.h>
diff --git a/sys/crypto/des/des_enc.c b/sys/crypto/des/des_enc.c
index f703b3099bc8..7365c171d3ff 100644
--- a/sys/crypto/des/des_enc.c
+++ b/sys/crypto/des/des_enc.c
@@ -60,8 +60,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <crypto/des/des_locl.h>
diff --git a/sys/crypto/des/des_setkey.c b/sys/crypto/des/des_setkey.c
index 491e3cb45a4a..f2f200acc7e0 100644
--- a/sys/crypto/des/des_setkey.c
+++ b/sys/crypto/des/des_setkey.c
@@ -57,8 +57,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <crypto/des/des_locl.h>
diff --git a/sys/crypto/libsodium/randombytes.c b/sys/crypto/libsodium/randombytes.c
index 7c5f5caff5ce..139b8ab0082c 100644
--- a/sys/crypto/libsodium/randombytes.c
+++ b/sys/crypto/libsodium/randombytes.c
@@ -1,7 +1,6 @@
/* This file is in the public domain. */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
#include <sys/libkern.h>
#include <sodium/randombytes.h>
diff --git a/sys/crypto/libsodium/utils.c b/sys/crypto/libsodium/utils.c
index aebe6c1fca9e..9d98b261f2ff 100644
--- a/sys/crypto/libsodium/utils.c
+++ b/sys/crypto/libsodium/utils.c
@@ -18,7 +18,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/systm.h>
diff --git a/sys/crypto/openssl/ossl.c b/sys/crypto/openssl/ossl.c
index 25897cae0dca..e8b35b3cc179 100644
--- a/sys/crypto/openssl/ossl.c
+++ b/sys/crypto/openssl/ossl.c
@@ -34,8 +34,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <sys/bus.h>
#include <sys/kernel.h>
diff --git a/sys/crypto/openssl/ossl_aes.c b/sys/crypto/openssl/ossl_aes.c
index 93d3ac3f2a99..84d694a7199f 100644
--- a/sys/crypto/openssl/ossl_aes.c
+++ b/sys/crypto/openssl/ossl_aes.c
@@ -26,8 +26,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/malloc.h>
diff --git a/sys/crypto/openssl/ossl_sha1.c b/sys/crypto/openssl/ossl_sha1.c
index 7d9c9938b1bd..7642dc9b9f31 100644
--- a/sys/crypto/openssl/ossl_sha1.c
+++ b/sys/crypto/openssl/ossl_sha1.c
@@ -8,8 +8,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/libkern.h>
#include <sys/malloc.h>
diff --git a/sys/crypto/openssl/ossl_sha256.c b/sys/crypto/openssl/ossl_sha256.c
index 8c273bd137fd..4613a9409b44 100644
--- a/sys/crypto/openssl/ossl_sha256.c
+++ b/sys/crypto/openssl/ossl_sha256.c
@@ -8,8 +8,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/libkern.h>
#include <sys/malloc.h>
diff --git a/sys/crypto/openssl/ossl_sha512.c b/sys/crypto/openssl/ossl_sha512.c
index 1955feb93e81..c8c3d97d7974 100644
--- a/sys/crypto/openssl/ossl_sha512.c
+++ b/sys/crypto/openssl/ossl_sha512.c
@@ -8,8 +8,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/libkern.h>
#include <sys/malloc.h>
diff --git a/sys/crypto/rc4/rc4.c b/sys/crypto/rc4/rc4.c
index dbdbd7af6aa0..d053074a5a82 100644
--- a/sys/crypto/rc4/rc4.c
+++ b/sys/crypto/rc4/rc4.c
@@ -35,8 +35,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/module.h>
diff --git a/sys/crypto/rijndael/rijndael-alg-fst.c b/sys/crypto/rijndael/rijndael-alg-fst.c
index 5197e226a26e..3cdbddf0239a 100644
--- a/sys/crypto/rijndael/rijndael-alg-fst.c
+++ b/sys/crypto/rijndael/rijndael-alg-fst.c
@@ -25,8 +25,6 @@
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/cdefs.h>
#include <sys/types.h>
#ifdef _KERNEL
diff --git a/sys/crypto/rijndael/rijndael-api-fst.c b/sys/crypto/rijndael/rijndael-api-fst.c
index f954854ce9e9..318ad96e8f41 100644
--- a/sys/crypto/rijndael/rijndael-api-fst.c
+++ b/sys/crypto/rijndael/rijndael-api-fst.c
@@ -16,8 +16,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#ifdef _KERNEL
#include <sys/systm.h>
diff --git a/sys/crypto/rijndael/rijndael-api.c b/sys/crypto/rijndael/rijndael-api.c
index 47de1421494a..71ba64109918 100644
--- a/sys/crypto/rijndael/rijndael-api.c
+++ b/sys/crypto/rijndael/rijndael-api.c
@@ -27,8 +27,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#ifdef _KERNEL
#include <sys/systm.h>
diff --git a/sys/crypto/sha1.c b/sys/crypto/sha1.c
index 85226db08bc8..cb38ebcc51e5 100644
--- a/sys/crypto/sha1.c
+++ b/sys/crypto/sha1.c
@@ -37,8 +37,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <sys/cdefs.h>
#include <sys/time.h>
diff --git a/sys/crypto/sha2/sha256c.c b/sys/crypto/sha2/sha256c.c
index 57ae9e7a6ab3..a3bebc4bee55 100644
--- a/sys/crypto/sha2/sha256c.c
+++ b/sys/crypto/sha2/sha256c.c
@@ -25,8 +25,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/endian.h>
#include <sys/types.h>
diff --git a/sys/crypto/sha2/sha256c_arm64.c b/sys/crypto/sha2/sha256c_arm64.c
index 8c0153c2b603..3cdeedf972bd 100644
--- a/sys/crypto/sha2/sha256c_arm64.c
+++ b/sys/crypto/sha2/sha256c_arm64.c
@@ -27,8 +27,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <arm_neon.h>
diff --git a/sys/crypto/sha2/sha512c.c b/sys/crypto/sha2/sha512c.c
index 4533632500f2..8eda238870e8 100644
--- a/sys/crypto/sha2/sha512c.c
+++ b/sys/crypto/sha2/sha512c.c
@@ -26,8 +26,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/endian.h>
#include <sys/types.h>
diff --git a/sys/crypto/sha2/sha512c_arm64.c b/sys/crypto/sha2/sha512c_arm64.c
index 8d3d327ea963..00016814a332 100644
--- a/sys/crypto/sha2/sha512c_arm64.c
+++ b/sys/crypto/sha2/sha512c_arm64.c
@@ -27,8 +27,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <arm_neon.h>
diff --git a/sys/crypto/siphash/siphash.c b/sys/crypto/siphash/siphash.c
index 5a22312f3533..02286ed32a0f 100644
--- a/sys/crypto/siphash/siphash.c
+++ b/sys/crypto/siphash/siphash.c
@@ -42,8 +42,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/types.h>
#include <sys/systm.h>
diff --git a/sys/crypto/siphash/siphash_test.c b/sys/crypto/siphash/siphash_test.c
index 093f2282d276..f76f9e1fa966 100644
--- a/sys/crypto/siphash/siphash_test.c
+++ b/sys/crypto/siphash/siphash_test.c
@@ -26,8 +26,6 @@
* in = 00 01 02 ... 3e (63 bytes)
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/types.h>
#include <sys/systm.h>
diff --git a/sys/crypto/skein/skein.c b/sys/crypto/skein/skein.c
index fd17623db21a..4ee118e7f87b 100644
--- a/sys/crypto/skein/skein.c
+++ b/sys/crypto/skein/skein.c
@@ -9,8 +9,6 @@
************************************************************************/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/endian.h>
#include <sys/types.h>
diff --git a/sys/crypto/skein/skein_block.c b/sys/crypto/skein/skein_block.c
index c92455051325..7855c6f95475 100644
--- a/sys/crypto/skein/skein_block.c
+++ b/sys/crypto/skein/skein_block.c
@@ -15,8 +15,6 @@
************************************************************************/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/endian.h>
#include <sys/types.h>
diff --git a/sys/crypto/via/padlock.c b/sys/crypto/via/padlock.c
index 056c653eb24f..314beffbe2f5 100644
--- a/sys/crypto/via/padlock.c
+++ b/sys/crypto/via/padlock.c
@@ -25,8 +25,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/crypto/via/padlock_cipher.c b/sys/crypto/via/padlock_cipher.c
index c5cd5161f4b2..253a84875626 100644
--- a/sys/crypto/via/padlock_cipher.c
+++ b/sys/crypto/via/padlock_cipher.c
@@ -45,8 +45,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/crypto/via/padlock_hash.c b/sys/crypto/via/padlock_hash.c
index f834e677fc98..706452c45a3e 100644
--- a/sys/crypto/via/padlock_hash.c
+++ b/sys/crypto/via/padlock_hash.c
@@ -25,8 +25,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>