examples/ipsec-segw: add SPDX license tag
authorStephen Hemminger <stephen@networkplumber.org>
Fri, 8 Nov 2019 17:06:14 +0000 (09:06 -0800)
committerAkhil Goyal <akhil.goyal@nxp.com>
Wed, 20 Nov 2019 11:35:51 +0000 (12:35 +0100)
Add missing BSD license tag to IPsec examples.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
54 files changed:
examples/ipsec-secgw/test/bypass_defs.sh
examples/ipsec-secgw/test/common_defs.sh
examples/ipsec-secgw/test/common_defs_secgw.sh
examples/ipsec-secgw/test/data_rxtx.sh
examples/ipsec-secgw/test/linux_test4.sh
examples/ipsec-secgw/test/linux_test6.sh
examples/ipsec-secgw/test/pkttest.py
examples/ipsec-secgw/test/pkttest.sh
examples/ipsec-secgw/test/run_test.sh
examples/ipsec-secgw/test/trs_3descbc_sha1_common_defs.sh
examples/ipsec-secgw/test/trs_3descbc_sha1_defs.sh
examples/ipsec-secgw/test/trs_3descbc_sha1_esn_atom_defs.sh
examples/ipsec-secgw/test/trs_3descbc_sha1_esn_defs.sh
examples/ipsec-secgw/test/trs_3descbc_sha1_old_defs.sh
examples/ipsec-secgw/test/trs_aescbc_sha1_common_defs.sh
examples/ipsec-secgw/test/trs_aescbc_sha1_defs.sh
examples/ipsec-secgw/test/trs_aescbc_sha1_esn_atom_defs.sh
examples/ipsec-secgw/test/trs_aescbc_sha1_esn_defs.sh
examples/ipsec-secgw/test/trs_aescbc_sha1_old_defs.sh
examples/ipsec-secgw/test/trs_aesctr_sha1_common_defs.sh
examples/ipsec-secgw/test/trs_aesctr_sha1_defs.sh
examples/ipsec-secgw/test/trs_aesctr_sha1_esn_atom_defs.sh
examples/ipsec-secgw/test/trs_aesctr_sha1_esn_defs.sh
examples/ipsec-secgw/test/trs_aesctr_sha1_old_defs.sh
examples/ipsec-secgw/test/trs_aesgcm_common_defs.sh
examples/ipsec-secgw/test/trs_aesgcm_defs.sh
examples/ipsec-secgw/test/trs_aesgcm_esn_atom_defs.sh
examples/ipsec-secgw/test/trs_aesgcm_esn_defs.sh
examples/ipsec-secgw/test/trs_aesgcm_inline_crypto_defs.sh
examples/ipsec-secgw/test/trs_aesgcm_inline_crypto_old_defs.sh
examples/ipsec-secgw/test/trs_aesgcm_old_defs.sh
examples/ipsec-secgw/test/trs_ipv6opts.py
examples/ipsec-secgw/test/tun_3descbc_sha1_common_defs.sh
examples/ipsec-secgw/test/tun_3descbc_sha1_defs.sh
examples/ipsec-secgw/test/tun_3descbc_sha1_esn_atom_defs.sh
examples/ipsec-secgw/test/tun_3descbc_sha1_esn_defs.sh
examples/ipsec-secgw/test/tun_3descbc_sha1_old_defs.sh
examples/ipsec-secgw/test/tun_aescbc_sha1_common_defs.sh
examples/ipsec-secgw/test/tun_aescbc_sha1_defs.sh
examples/ipsec-secgw/test/tun_aescbc_sha1_esn_atom_defs.sh
examples/ipsec-secgw/test/tun_aescbc_sha1_esn_defs.sh
examples/ipsec-secgw/test/tun_aescbc_sha1_old_defs.sh
examples/ipsec-secgw/test/tun_aesctr_sha1_common_defs.sh
examples/ipsec-secgw/test/tun_aesctr_sha1_defs.sh
examples/ipsec-secgw/test/tun_aesctr_sha1_esn_atom_defs.sh
examples/ipsec-secgw/test/tun_aesctr_sha1_esn_defs.sh
examples/ipsec-secgw/test/tun_aesctr_sha1_old_defs.sh
examples/ipsec-secgw/test/tun_aesgcm_common_defs.sh
examples/ipsec-secgw/test/tun_aesgcm_defs.sh
examples/ipsec-secgw/test/tun_aesgcm_esn_atom_defs.sh
examples/ipsec-secgw/test/tun_aesgcm_esn_defs.sh
examples/ipsec-secgw/test/tun_aesgcm_inline_crypto_defs.sh
examples/ipsec-secgw/test/tun_aesgcm_inline_crypto_old_defs.sh
examples/ipsec-secgw/test/tun_aesgcm_old_defs.sh

index d8d5483..e553635 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 CRYPTO_DEV=${CRYPTO_DEV:-'--vdev="crypto_null0"'}
 
index 09689af..4aac498 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 #check ETH_DEV
 if [[ -z "${ETH_DEV}" ]]; then
index a50c03c..e431c8e 100644 (file)
@@ -1,4 +1,5 @@
 #!/bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 # check required parameters
 SGW_REQ_VARS="SGW_PATH SGW_PORT_CFG SGW_WAIT_DEV"
index 9ba978a..05090e3 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 TCP_PORT=22222
 
index 85efc5d..7604510 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 # usage:  /bin/bash linux_test4.sh <ipsec_mode>
 # for list of available modes please refer to run_test.sh.
index c749dce..479f29b 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 # usage:  /bin/bash linux_test6.sh <ipsec_mode>
 # for list of available modes please refer to run_test.sh.
index 5250727..785b2fb 100755 (executable)
@@ -1,4 +1,5 @@
 #!/usr/bin/env python3
+# SPDX-License-Identifier: BSD-3-Clause
 
 import fcntl
 import pkg_resources
index 04cd96b..f192472 100755 (executable)
@@ -1,4 +1,5 @@
 #!/bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 DIR=$(dirname $0)
 
index 8055a4c..3e39309 100755 (executable)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 # usage: /bin/bash run_test.sh [-46]
 # Run all defined linux_test[4,6].sh test-cases one by one
index bb4cef6..3c5c18a 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 CRYPTO_DEV=${CRYPTO_DEV:-'--vdev="crypto_aesni_mb0"'}
 
index 35c31dc..a12c8b5 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_3descbc_sha1_common_defs.sh
 
index 7b62dcf..fdd62c6 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_3descbc_sha1_common_defs.sh
 
index e2621e0..9dbdd17 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 CRYPTO_DEV=${CRYPTO_DEV:-'--vdev="crypto_aesni_mb0"'}
 
index ae20fa9..9602d50 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_aescbc_sha1_common_defs.sh
 
index 5f8b099..247659f 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_aescbc_sha1_common_defs.sh
 
index a3abb61..91f70a3 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_aescbc_sha1_defs.sh
 
index 9c213e3..6aba680 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 CRYPTO_DEV=${CRYPTO_DEV:-'--vdev="crypto_aesni_mb0"'}
 
index 5d569ec..68586c8 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_aesctr_sha1_common_defs.sh
 
index 05ed982..011e6c7 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_aesctr_sha1_common_defs.sh
 
index 3aa0712..1f41c64 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_aesctr_sha1_defs.sh
 
index 17f2f86..1d1835e 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 CRYPTO_DEV=${CRYPTO_DEV:-'--vdev="crypto_aesni_gcm0"'}
 
index ca872df..8ed6152 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_aesgcm_common_defs.sh
 
index 2d3ae05..0b94359 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_aesgcm_esn_defs.sh
 
index d4cb108..7580fc9 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_aesgcm_common_defs.sh
 
index 951e6b6..1f33d9a 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/trs_aesgcm_defs.sh
 
index 167c896..9501186 100755 (executable)
@@ -1,4 +1,5 @@
 #!/usr/bin/env python3
+# SPDX-License-Identifier: BSD-3-Clause
 
 from scapy.all import *
 import unittest
index dd802d6..7c3226f 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 CRYPTO_DEV=${CRYPTO_DEV:-'--vdev="crypto_aesni_mb0"'}
 
index 63df5a4..903b0fd 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_3descbc_sha1_common_defs.sh
 
index cded928..168cc07 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_3descbc_sha1_common_defs.sh
 
index 4025da2..bdf5938 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 CRYPTO_DEV=${CRYPTO_DEV:-'--vdev="crypto_aesni_mb0"'}
 
index 40607a7..ae47994 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_aescbc_sha1_common_defs.sh
 
index e95157e..b1d0e26 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_aescbc_sha1_common_defs.sh
 
index 3c0d8d1..a72486a 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_aescbc_sha1_defs.sh
 
index a3ac3a6..06f2ef0 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 CRYPTO_DEV=${CRYPTO_DEV:-'--vdev="crypto_aesni_mb0"'}
 
index 1fee291..b5d8d64 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_aesctr_sha1_common_defs.sh
 
index 0dfe47b..7990801 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_aesctr_sha1_common_defs.sh
 
index 26f0d02..e9da4c1 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_aesctr_sha1_defs.sh
 
index 7490bad..d846aac 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 CRYPTO_DEV=${CRYPTO_DEV:-'--vdev="crypto_aesni_gcm0"'}
 
index b4be059..5e0c935 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_aesgcm_common_defs.sh
 
index 79df9ee..e3dffbe 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_aesgcm_esn_defs.sh
 
index 3c37463..b5ced8c 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_aesgcm_common_defs.sh
 
index e0a015e..e9be774 100644 (file)
@@ -1,4 +1,5 @@
 #! /bin/bash
+# SPDX-License-Identifier: BSD-3-Clause
 
 . ${DIR}/tun_aesgcm_defs.sh