This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 3b1a5ccffa8732b1add95b44bf6f21f60679a0ce Author: Alin Jerpelea <[email protected]> AuthorDate: Mon Dec 16 03:22:58 2024 +0100 include/crypto/rijndael: migrate to SPDX identifier Most tools used for compliance and SBOM generation use SPDX identifiers This change brings us a step closer to an easy SBOM generation. define NuttX local NuttX-PublicDomain identifier “Public Domain” is a concept distinct from copyright licensing; it generally means that the work no longer has any copyright protection or ownership, and therefore requires no license permission in order to use, copy, modify, distribute, perform, display, etc. In the United States – and many jurisdictions – copyright protections attach automatically to creative works upon creation if they satisfy certain minimum criteria. “Public Domain” would thus represent a significant change to the legal status of the work. The rules around “Public Domain” often vary or are unspecified jurisdiction to jurisdiction. Adding to the confusion, some jurisdictions may not even recognize the concept of “Public Domain” (or similar). As such, a license may nevertheless be required or implied in these cases. Even in the U.S., there is no clear, officially-sanctioned procedure for affirmatively placing copyright-eligible works into the “Public Domain” aside from natural statutory expiration of copyright. The bottom-line is, there are few if any objective, brightline rules for proactively placing copyright-eligible works into the Public Domain that we can broadly rely on. Signed-off-by: Alin Jerpelea <[email protected]> --- include/crypto/rijndael.h | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/include/crypto/rijndael.h b/include/crypto/rijndael.h index c90bffab78..6d40e29f01 100644 --- a/include/crypto/rijndael.h +++ b/include/crypto/rijndael.h @@ -1,16 +1,11 @@ /**************************************************************************** * include/crypto/rijndael.h - * $OpenBSD: rijndael.h,v 1.13 2008/06/09 07:49:45 djm Exp $ * - * rijndael-alg-fst.h + * SPDX-License-Identifier: NuttX-PublicDomain * - * @version 3.0 (December 2000) - * - * Optimised ANSI C code for the Rijndael cipher (now AES) - * - * @author Vincent Rijmen <[email protected]> - * @author Antoon Bosselaers <[email protected]> - * @author Paulo Barreto <[email protected]> + * SPDX-FileContributor: Vincent Rijmen <[email protected]> + * SPDX-FileContributor: Antoon Bosselaers <[email protected]> + * SPDX-FileContributor: Paulo Barreto <[email protected]> * * This code is hereby placed in the public domain. *
